| Index: base/win/scoped_handle_unittest.cc
|
| diff --git a/base/win/scoped_handle_unittest.cc b/base/win/scoped_handle_unittest.cc
|
| index ca6fb451a876e3e249ae8526f083bcc7ce0f0ec3..c75f5e0f1a961e8da02156c8af1ca71dd88834a1 100644
|
| --- a/base/win/scoped_handle_unittest.cc
|
| +++ b/base/win/scoped_handle_unittest.cc
|
| @@ -114,8 +114,9 @@ TEST(ScopedHandleTest, MAYBE_MultiProcess) {
|
| CommandLine command_line(base::GetMultiProcessTestChildBaseCommandLine());
|
| command_line.AppendSwitch(switches::kTestDoNotInitializeIcu);
|
|
|
| - base::Process test_child_process = base::SpawnMultiProcessTestChild(
|
| + base::SpawnChildResult spawn_result = base::SpawnMultiProcessTestChild(
|
| "ActiveVerifierChildProcess", command_line, LaunchOptions());
|
| + base::Process test_child_process = std::move(spawn_result.process);
|
|
|
| int rv = -1;
|
| ASSERT_TRUE(test_child_process.WaitForExitWithTimeout(
|
|
|