09c1114e71
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://electronjs.org/
24 lines
1.2 KiB
C++
24 lines
1.2 KiB
C++
--- content/browser/utility_sandbox_delegate.cc.orig 2022-06-17 14:20:10 UTC
|
|
+++ content/browser/utility_sandbox_delegate.cc
|
|
@@ -63,10 +63,10 @@ UtilitySandboxedProcessLauncherDelegate::
|
|
#if BUILDFLAG(ENABLE_PLUGINS)
|
|
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_CHROMEOS_ASH)
|
|
@@ -109,7 +109,7 @@ 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_CHROMEOS_ASH)
|