mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 23:30:29 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://www.electronjs.org/
29 lines
1.4 KiB
C++
29 lines
1.4 KiB
C++
--- chrome/browser/ui/ui_features.cc.orig 2024-11-09 21:36:38 UTC
|
|
+++ chrome/browser/ui/ui_features.cc
|
|
@@ -103,7 +103,7 @@ BASE_FEATURE(kAccessCodeCastUI,
|
|
base::FEATURE_ENABLED_BY_DEFAULT);
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
// Enables the feature to remove the last confirmation dialog when relaunching
|
|
// to update Chrome.
|
|
BASE_FEATURE(kFewerUpdateConfirmations,
|
|
@@ -402,7 +402,7 @@ BASE_FEATURE(kTopChromeWebUIUsesSpareRenderer,
|
|
"TopChromeWebUIUsesSpareRenderer",
|
|
base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
// Enables alternate update-related text to be displayed in browser app menu
|
|
// button, menu item and confirmation dialog.
|
|
BASE_FEATURE(kUpdateTextOptions,
|
|
@@ -474,7 +474,7 @@ BASE_FEATURE(kStopLoadingAnimationForHiddenWindow,
|
|
"StopLoadingAnimationForHiddenWindow",
|
|
base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
BASE_FEATURE(kUsePortalAccentColor,
|
|
"UsePortalAccentColor",
|
|
base::FEATURE_ENABLED_BY_DEFAULT);
|