| Index: chrome/browser/process_singleton_win_unittest.cc
|
| diff --git a/chrome/browser/process_singleton_win_unittest.cc b/chrome/browser/process_singleton_win_unittest.cc
|
| index df53228df8a9d58e9d231b18892bc88d38fafcb7..56381d2f49957b96824003601145034a827c2777 100644
|
| --- a/chrome/browser/process_singleton_win_unittest.cc
|
| +++ b/chrome/browser/process_singleton_win_unittest.cc
|
| @@ -191,8 +191,9 @@ class ProcessSingletonTest : public base::MultiProcessTest {
|
|
|
| base::LaunchOptions options;
|
| options.start_hidden = true;
|
| - browser_victim_ =
|
| + base::SpawnChildResult spawn_result =
|
| SpawnChildWithOptions("ProcessSingletonTestProcessMain", options);
|
| + browser_victim_ = std::move(spawn_result.process);
|
|
|
| // Wait for the ready event (or process exit).
|
| HANDLE handles[] = {ready_event.Get(), browser_victim_.Handle()};
|
|
|