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/ Requested by: mikael (via email)
21 lines
903 B
C++
21 lines
903 B
C++
--- content/utility/services.cc.orig 2022-05-19 05:17:42 UTC
|
|
+++ content/utility/services.cc
|
|
@@ -67,7 +67,7 @@
|
|
extern sandbox::TargetServices* g_utility_target_services;
|
|
#endif // BUILDFLAG(IS_WIN)
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
#include "sandbox/linux/services/libc_interceptor.h"
|
|
#include "sandbox/policy/mojom/sandbox.mojom.h"
|
|
#include "sandbox/policy/sandbox_type.h"
|
|
@@ -205,7 +205,7 @@ auto RunAudio(mojo::PendingReceiver<audio::mojom::Audi
|
|
<< "task_policy_set TASK_QOS_POLICY";
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
auto* command_line = base::CommandLine::ForCurrentProcess();
|
|
if (sandbox::policy::SandboxTypeFromCommandLine(*command_line) ==
|
|
sandbox::mojom::Sandbox::kNoSandbox) {
|