diff options
Diffstat (limited to 'content/browser/child_process_launcher.cc')
-rw-r--r-- | content/browser/child_process_launcher.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc index 4b49369..7bb603f 100644 --- a/content/browser/child_process_launcher.cc +++ b/content/browser/child_process_launcher.cc @@ -174,8 +174,7 @@ class ChildProcessLauncher::Context base::LaunchOptions options; options.environ = &env; options.fds_to_remap = &fds_to_map; - options.process_handle = &handle; - launched = base::LaunchProcess(*cmd_line, options); + launched = base::LaunchProcess(*cmd_line, options, &handle); #if defined(OS_MACOSX) if (launched) |