| Index: base/test/multiprocess_test.cc
|
| diff --git a/base/test/multiprocess_test.cc b/base/test/multiprocess_test.cc
|
| index c691b5f1aa3f6adc8579fd01ccebd0a0d5daad4d..97f335cac3bb858132ece79dcaf00729f1003764 100644
|
| --- a/base/test/multiprocess_test.cc
|
| +++ b/base/test/multiprocess_test.cc
|
| @@ -47,13 +47,12 @@ ProcessHandle MultiProcessTest::SpawnChildImpl(
|
| bool debug_on_start) {
|
| ProcessHandle handle = kNullProcessHandle;
|
| base::LaunchOptions options;
|
| - options.process_handle = &handle;
|
| #if defined(OS_WIN)
|
| options.start_hidden = true;
|
| #else
|
| options.fds_to_remap = &fds_to_map;
|
| #endif
|
| - base::LaunchProcess(MakeCmdLine(procname, debug_on_start), options);
|
| + base::LaunchProcess(MakeCmdLine(procname, debug_on_start), options, &handle);
|
| return handle;
|
| }
|
|
|
|
|