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

Unified Diff: content/browser/worker_host/worker_process_host.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/utility_process_host_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/worker_host/worker_process_host.cc
diff --git a/content/browser/worker_host/worker_process_host.cc b/content/browser/worker_host/worker_process_host.cc
index 8d40298ff70fd226df36ba7c32417012748d25a7..3da51d5cdb1f9fa45b3eb166056325375b5bfa6d 100644
--- a/content/browser/worker_host/worker_process_host.cc
+++ b/content/browser/worker_host/worker_process_host.cc
@@ -160,14 +160,17 @@ bool WorkerProcessHost::Init(int render_process_id) {
static const char* const kSwitchNames[] = {
switches::kDisableApplicationCache,
switches::kDisableDatabases,
- switches::kEnableLogging,
- switches::kLoggingLevel,
- switches::kDisableWebSockets,
#if defined(OS_WIN)
switches::kDisableDesktopNotifications,
#endif
switches::kDisableFileSystem,
switches::kDisableSeccompFilterSandbox,
+ switches::kDisableWebSockets,
+ switches::kEnableLogging,
+#if defined(OS_MACOSX)
+ switches::kEnableSandboxLogging,
+#endif
+ switches::kLoggingLevel,
};
cmd_line->CopySwitchesFrom(*CommandLine::ForCurrentProcess(), kSwitchNames,
arraysize(kSwitchNames));
« no previous file with comments | « content/browser/utility_process_host_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698