summaryrefslogtreecommitdiffstats
path: root/chrome/browser/worker_host
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/worker_host')
-rw-r--r--chrome/browser/worker_host/worker_process_host.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/worker_host/worker_process_host.cc b/chrome/browser/worker_host/worker_process_host.cc
index 3373e2f..562daea 100644
--- a/chrome/browser/worker_host/worker_process_host.cc
+++ b/chrome/browser/worker_host/worker_process_host.cc
@@ -79,7 +79,7 @@ bool WorkerProcessHost::Init() {
if (!CreateChannel())
return false;
- FilePath exe_path = GetChildPath();
+ FilePath exe_path = GetChildPath(true);
if (exe_path.empty())
return false;
@@ -143,6 +143,7 @@ bool WorkerProcessHost::Init() {
#if defined(OS_WIN)
FilePath(),
#elif defined(OS_POSIX)
+ false,
base::environment_vector(),
#endif
cmd_line);