Index: content/browser/zygote_host/zygote_host_impl_linux.cc |
diff --git a/content/browser/zygote_host/zygote_host_impl_linux.cc b/content/browser/zygote_host/zygote_host_impl_linux.cc |
index 17de386698e0d03b0f11d154ab47a2e03106c36d..0ead4ce1c33d9005adfed3a95abc88a823ec7b46 100644 |
--- a/content/browser/zygote_host/zygote_host_impl_linux.cc |
+++ b/content/browser/zygote_host/zygote_host_impl_linux.cc |
@@ -122,18 +122,17 @@ void ZygoteHostImpl::Init(const std::string& sandbox_cmd) { |
// Should this list be obtained from browser_render_process_host.cc? |
static const char* kForwardSwitches[] = { |
switches::kAllowSandboxDebugging, |
- switches::kLoggingLevel, |
- switches::kEnableLogging, // Support, e.g., --enable-logging=stderr. |
- switches::kV, |
- switches::kVModule, |
- switches::kRegisterPepperPlugins, |
switches::kDisableSeccompFilterSandbox, |
- |
+ switches::kEnableLogging, // Support, e.g., --enable-logging=stderr. |
// Zygote process needs to know what resources to have loaded when it |
// becomes a renderer process. |
switches::kForceDeviceScaleFactor, |
- |
+ switches::kLoggingLevel, |
switches::kNoSandbox, |
+ switches::kPpapiInProcess, |
+ switches::kRegisterPepperPlugins, |
+ switches::kV, |
+ switches::kVModule, |
}; |
cmd_line.CopySwitchesFrom(browser_command_line, kForwardSwitches, |
arraysize(kForwardSwitches)); |