mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 23:09:19 -04:00
Approved by: rene (mentor) Security: https://vuxml.freebsd.org/freebsd/310ca30e-a951-11ed-8314-a8a1599412c6.html
59 lines
3 KiB
C++
59 lines
3 KiB
C++
--- content/public/common/content_features.cc.orig 2023-02-08 09:03:45 UTC
|
|
+++ content/public/common/content_features.cc
|
|
@@ -41,7 +41,7 @@ BASE_FEATURE(kAudioServiceOutOfProcess,
|
|
"AudioServiceOutOfProcess",
|
|
// TODO(crbug.com/1052397): Remove !IS_CHROMEOS_LACROS once lacros starts being
|
|
// built with OS_CHROMEOS instead of OS_LINUX.
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || \
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD) || \
|
|
(BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS_LACROS))
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
#else
|
|
@@ -53,7 +53,7 @@ BASE_FEATURE(kAudioServiceOutOfProcess,
|
|
// kAudioServiceOutOfProcess feature is enabled.
|
|
BASE_FEATURE(kAudioServiceSandbox,
|
|
"AudioServiceSandbox",
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_FUCHSIA)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
#else
|
|
base::FEATURE_DISABLED_BY_DEFAULT
|
|
@@ -499,7 +499,7 @@ BASE_FEATURE(kGetDisplayMediaSetAutoSelectAllScreens,
|
|
// (activated by kUserAgentClientHint)
|
|
BASE_FEATURE(kGreaseUACH, "GreaseUACH", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
// Supports proxying thread type changes of renderer processes to browser
|
|
// process and having browser process handle adjusting thread properties (nice
|
|
// value, c-group, latency sensitivity...) for renderers which have sandbox
|
|
@@ -1258,7 +1258,7 @@ BASE_FEATURE(kWebAssemblyCodeProtection,
|
|
"WebAssemblyCodeProtection",
|
|
base::FEATURE_DISABLED_BY_DEFAULT);
|
|
|
|
-#if (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) && defined(ARCH_CPU_X86_64)
|
|
+#if (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)) && defined(ARCH_CPU_X86_64)
|
|
// Use memory protection keys in userspace (PKU) (if available) to protect code
|
|
// JITed for WebAssembly. Fall back to traditional memory protection if
|
|
// WebAssemblyCodeProtection is also enabled.
|
|
@@ -1305,7 +1305,7 @@ BASE_FEATURE(kWebAssemblyTiering,
|
|
BASE_FEATURE(kWebAssemblyTrapHandler,
|
|
"WebAssemblyTrapHandler",
|
|
#if ((BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN) || \
|
|
- BUILDFLAG(IS_MAC)) && \
|
|
+ BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD)) && \
|
|
defined(ARCH_CPU_X86_64)) || \
|
|
(BUILDFLAG(IS_MAC) && defined(ARCH_CPU_ARM64))
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
@@ -1381,7 +1381,11 @@ BASE_FEATURE(kWebUICodeCache,
|
|
|
|
// Controls whether the WebUSB API is enabled:
|
|
// https://wicg.github.io/webusb
|
|
+#if BUILDFLAG(IS_BSD)
|
|
+BASE_FEATURE(kWebUsb, "WebUSB", base::FEATURE_DISABLED_BY_DEFAULT);
|
|
+#else
|
|
BASE_FEATURE(kWebUsb, "WebUSB", base::FEATURE_ENABLED_BY_DEFAULT);
|
|
+#endif
|
|
|
|
// Controls whether the WebXR Device API is enabled.
|
|
BASE_FEATURE(kWebXr, "WebXR", base::FEATURE_ENABLED_BY_DEFAULT);
|