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/
22 lines
788 B
C++
22 lines
788 B
C++
--- sandbox/policy/sandbox.cc.orig 2022-02-28 16:54:41 UTC
|
|
+++ sandbox/policy/sandbox.cc
|
|
@@ -17,6 +17,10 @@
|
|
#include "sandbox/policy/linux/sandbox_linux.h"
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
|
|
+#if BUILDFLAG(IS_BSD)
|
|
+#include "sandbox/policy/openbsd/sandbox_openbsd.h"
|
|
+#endif // BUILDFLAG(IS_BSD)
|
|
+
|
|
#if BUILDFLAG(IS_MAC)
|
|
#include "sandbox/mac/seatbelt.h"
|
|
#endif // BUILDFLAG(IS_MAC)
|
|
@@ -30,7 +34,7 @@
|
|
namespace sandbox {
|
|
namespace policy {
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
bool Sandbox::Initialize(sandbox::mojom::Sandbox sandbox_type,
|
|
SandboxLinux::PreSandboxHook hook,
|
|
const SandboxLinux::Options& options) {
|