mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
8f6dc7d1dd
Submitted by: Matthias Wolf <freebsd@rheinwolf.de> Reviewed by: rene Approved by: chromium@ (rene) Obtained from: https://github.com/gliaskos/freebsd-chromium MFH: 2020Q2 Security: https://chromereleases.googleblog.com/2020/05/stable-channel-update-for-desktop.html Differential Revision: https://reviews.freebsd.org/D25102
17 lines
630 B
C++
17 lines
630 B
C++
--- extensions/common/feature_switch.cc.orig 2020-05-13 18:39:44 UTC
|
|
+++ extensions/common/feature_switch.cc
|
|
@@ -39,11 +39,11 @@ class CommonSwitches {
|
|
FeatureSwitch::DEFAULT_ENABLED),
|
|
load_media_router_component_extension(
|
|
kLoadMediaRouterComponentExtensionFlag,
|
|
-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
|
|
+#if BUILDFLAG(GOOGLE_CHROME_BRANDING) || defined(OS_BSD)
|
|
FeatureSwitch::DEFAULT_ENABLED)
|
|
#else
|
|
FeatureSwitch::DEFAULT_DISABLED)
|
|
-#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
|
|
+#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING) || defined(OS_BSD)
|
|
{
|
|
}
|
|
|