123456789101112131415161718192021 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Jeremy Apthorp <[email protected]>
- Date: Tue, 16 Apr 2019 11:25:08 -0700
- Subject: unsandboxed_ppapi_processes_skip_zygote.patch
- Unsandboxed ppapi processes should skip zygote.
- diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc
- index c10e41fd2cb6269e7a7bb79da14b2d1d2eb1f41f..87bb8697479eaaaa015ba2a9d25fab54fe526dab 100644
- --- a/content/browser/ppapi_plugin_process_host.cc
- +++ b/content/browser/ppapi_plugin_process_host.cc
- @@ -111,6 +111,9 @@ class PpapiPluginSandboxedProcessLauncherDelegate
- ZygoteHandle GetZygote() override {
- const base::CommandLine& browser_command_line =
- *base::CommandLine::ForCurrentProcess();
- + if (browser_command_line.HasSwitch(sandbox::policy::switches::kNoSandbox)) {
- + return nullptr;
- + }
- base::CommandLine::StringType plugin_launcher = browser_command_line
- .GetSwitchValueNative(switches::kPpapiPluginLauncher);
- if (!plugin_launcher.empty())
|