| Index: sandbox/mac/sandbox_mac_compiler_v2_unittest.mm
|
| diff --git a/sandbox/mac/sandbox_mac_compiler_v2_unittest.mm b/sandbox/mac/sandbox_mac_compiler_v2_unittest.mm
|
| index aba42edbc9478a7fe05f7a73c533ed5330ca8a33..57fdd3ed322f395ef0cd4c378de430f0597842a8 100644
|
| --- a/sandbox/mac/sandbox_mac_compiler_v2_unittest.mm
|
| +++ b/sandbox/mac/sandbox_mac_compiler_v2_unittest.mm
|
| @@ -126,7 +126,8 @@ MULTIPROCESS_TEST_MAIN(V2ProfileProcess) {
|
| }
|
|
|
| TEST_F(SandboxMacCompilerV2Test, V2ProfileTest) {
|
| - base::Process process = SpawnChild("V2ProfileProcess");
|
| + base::SpawnChildResult spawn_result = SpawnChild("V2ProfileProcess");
|
| + base::Process process = std::move(spawn_result.process);
|
| ASSERT_TRUE(process.IsValid());
|
| int exit_code = 42;
|
| EXPECT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_max_timeout(),
|
|
|