| Index: chrome/test/out_of_proc_test_runner.cc
|
| diff --git a/chrome/test/out_of_proc_test_runner.cc b/chrome/test/out_of_proc_test_runner.cc
|
| index 9b230bac660998fd3567b13b121626ae98716302..94ff0d53b134af84a59a3c4517976471e3327cc7 100644
|
| --- a/chrome/test/out_of_proc_test_runner.cc
|
| +++ b/chrome/test/out_of_proc_test_runner.cc
|
| @@ -354,7 +354,6 @@ int RunTest(const std::string& test_name, int default_timeout_ms) {
|
|
|
| base::ProcessHandle process_handle;
|
| base::LaunchOptions options;
|
| - options.process_handle = &process_handle;
|
|
|
| #if defined(OS_POSIX)
|
| const char* browser_wrapper = getenv("BROWSER_WRAPPER");
|
| @@ -371,7 +370,7 @@ int RunTest(const std::string& test_name, int default_timeout_ms) {
|
| options.new_process_group = true;
|
| #endif
|
|
|
| - if (!base::LaunchProcess(new_cmd_line, options))
|
| + if (!base::LaunchProcess(new_cmd_line, options, &process_handle))
|
| return false;
|
|
|
| int timeout_ms =
|
|
|