| Index: components/crash/content/app/fallback_crash_handling_win_unittest.cc
|
| diff --git a/components/crash/content/app/fallback_crash_handling_win_unittest.cc b/components/crash/content/app/fallback_crash_handling_win_unittest.cc
|
| index 7df6b20262aa6e832e6c98ea1d388ca0e6fe3b4c..243f19341ae2cceb2f2e1097342e7dd117b53063 100644
|
| --- a/components/crash/content/app/fallback_crash_handling_win_unittest.cc
|
| +++ b/components/crash/content/app/fallback_crash_handling_win_unittest.cc
|
| @@ -62,8 +62,9 @@ TEST_F(FallbackCrashHandlingTest, SetupAndRunAsFallbackCrashHandler) {
|
|
|
| base::LaunchOptions options;
|
| options.start_hidden = true;
|
| - base::Process test_child = base::SpawnMultiProcessTestChild(
|
| + base::SpawnChildResult spawn_result = base::SpawnMultiProcessTestChild(
|
| "FallbackCrashHandlingWinRunHandler", cmd_line, options);
|
| + base::Process test_child = std::move(spawn_result.process);
|
|
|
| ASSERT_TRUE(test_child.IsValid());
|
| int exit_code = -1;
|
|
|