mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 09:40:35 -04:00
Changelog: https://chromium.googlesource.com/chromium/src/+log/75.0.3770.142..76.0.3809.100?pretty=fuller&n=10000 Submitted by: Matthias Wolf <matthias@rheinwolf.de> MFH: 2019Q3
27 lines
1.4 KiB
C++
27 lines
1.4 KiB
C++
--- chrome/common/chrome_features.cc.orig 2019-07-24 18:58:13 UTC
|
|
+++ chrome/common/chrome_features.cc
|
|
@@ -98,13 +98,13 @@ const base::Feature kAutoFetchOnNetErrorPage{"AutoFetc
|
|
base::FEATURE_DISABLED_BY_DEFAULT};
|
|
#endif // defined(OS_ANDROID)
|
|
|
|
-#if defined(OS_WIN) || defined(OS_LINUX)
|
|
+#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_BSD)
|
|
// Enables the Restart background mode optimization. When all Chrome UI is
|
|
// closed and it goes in the background, allows to restart the browser to
|
|
// discard memory.
|
|
const base::Feature kBackgroundModeAllowRestart{
|
|
"BackgroundModeAllowRestart", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
-#endif // defined(OS_WIN) || defined(OS_LINUX)
|
|
+#endif // defined(OS_WIN) || defined(OS_LINUX) || defined(OS_BSD)
|
|
|
|
// Enables or disables whether permission prompts are automatically blocked
|
|
// after the user has explicitly dismissed them too many times.
|
|
@@ -150,7 +150,7 @@ const base::Feature kThirdPartyModulesBlocking{
|
|
"ThirdPartyModulesBlocking", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
#endif
|
|
|
|
-#if (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_MACOSX)
|
|
+#if (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_MACOSX) || defined(OS_BSD)
|
|
// Enables the dual certificate verification trial feature.
|
|
// https://crbug.com/649026
|
|
const base::Feature kCertDualVerificationTrialFeature{
|