Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Unified Diff: content/browser/utility_process_host_impl.cc

Issue 10978037: [OSX] Pass --enable-sandbox-logging to more sub-processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/ppapi_plugin_process_host.cc ('k') | content/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/utility_process_host_impl.cc
diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc
index 550df75c5a5d270d7402f3b32e92e26df96acf2e..82c3c5330ebc931c9f1a4a1c9dc816d8bca9692d 100644
--- a/content/browser/utility_process_host_impl.cc
+++ b/content/browser/utility_process_host_impl.cc
@@ -145,6 +145,10 @@ bool UtilityProcessHostImpl::StartProcess() {
cmd_line->AppendSwitch(switches::kChromeFrame);
if (no_sandbox_ || browser_command_line.HasSwitch(switches::kNoSandbox))
cmd_line->AppendSwitch(switches::kNoSandbox);
+#if defined(OS_MACOSX)
+ if (browser_command_line.HasSwitch(switches::kEnableSandboxLogging))
+ cmd_line->AppendSwitch(switches::kEnableSandboxLogging);
+#endif
if (browser_command_line.HasSwitch(switches::kDebugPluginLoading))
cmd_line->AppendSwitch(switches::kDebugPluginLoading);
« no previous file with comments | « content/browser/ppapi_plugin_process_host.cc ('k') | content/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698