| Index: components/crash/content/app/fallback_crash_handler_win_unittest.cc | 
| diff --git a/components/crash/content/app/fallback_crash_handler_win_unittest.cc b/components/crash/content/app/fallback_crash_handler_win_unittest.cc | 
| index 13ca131f0204c80ae3b82f4d5e95d0649be88b0d..92c008ea80465b23675238ca0af3c593a3d9e056 100644 | 
| --- a/components/crash/content/app/fallback_crash_handler_win_unittest.cc | 
| +++ b/components/crash/content/app/fallback_crash_handler_win_unittest.cc | 
| @@ -169,12 +169,12 @@ TEST_F(FallbackCrashHandlerWinTest, GenerateCrashDump) { | 
| cmd_line.AppendSwitchPath("directory", database_dir_.GetPath()); | 
| base::LaunchOptions options; | 
| options.start_hidden = true; | 
| -  base::Process test_child = base::SpawnMultiProcessTestChild( | 
| +  base::SpawnChildResult spawn_child = base::SpawnMultiProcessTestChild( | 
| "FallbackCrashHandlerWinMain", cmd_line, options); | 
|  | 
| -  ASSERT_TRUE(test_child.IsValid()); | 
| +  ASSERT_TRUE(spawn_child.process.IsValid()); | 
| int exit_code = -1; | 
| -  ASSERT_TRUE(test_child.WaitForExit(&exit_code)); | 
| +  ASSERT_TRUE(spawn_child.process.WaitForExit(&exit_code)); | 
| ASSERT_EQ(0, exit_code); | 
|  | 
| // Validate that the database contains one valid crash dump. | 
|  |