mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 20:09:14 -04:00
32 lines
1.7 KiB
C++
32 lines
1.7 KiB
C++
--- content/browser/utility_sandbox_delegate.cc.orig 2023-01-11 09:17:16 UTC
|
|
+++ content/browser/utility_sandbox_delegate.cc
|
|
@@ -63,13 +63,13 @@ UtilitySandboxedProcessLauncherDelegate::
|
|
#if BUILDFLAG(ENABLE_PPAPI)
|
|
sandbox_type_ == sandbox::mojom::Sandbox::kPpapi ||
|
|
#endif
|
|
-#if BUILDFLAG(IS_FUCHSIA)
|
|
+#if BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
sandbox_type_ == sandbox::mojom::Sandbox::kVideoCapture ||
|
|
#endif
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_ASH)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_BSD)
|
|
sandbox_type_ == sandbox::mojom::Sandbox::kHardwareVideoDecoding ||
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_ASH)
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
sandbox_type_ == sandbox::mojom::Sandbox::kHardwareVideoEncoding ||
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
#if BUILDFLAG(IS_CHROMEOS_ASH)
|
|
@@ -112,10 +112,10 @@ ZygoteHandle UtilitySandboxedProcessLauncherDelegate::
|
|
// unsandboxed zygote and then apply their actual sandboxes in the forked
|
|
// process upon startup.
|
|
if (sandbox_type_ == sandbox::mojom::Sandbox::kNetwork ||
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_ASH)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_BSD)
|
|
sandbox_type_ == sandbox::mojom::Sandbox::kHardwareVideoDecoding ||
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_ASH)
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
sandbox_type_ == sandbox::mojom::Sandbox::kHardwareVideoEncoding ||
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
#if BUILDFLAG(IS_CHROMEOS_ASH)
|