| Index: components/crash/content/app/crashpad.cc
 | 
| diff --git a/components/crash/content/app/crashpad.cc b/components/crash/content/app/crashpad.cc
 | 
| index ba04da14fe4f193efbd08c883cb7623e6335a63d..ede08d7dd1f6e58e484b5bd2f147b90e6ebdfe59 100644
 | 
| --- a/components/crash/content/app/crashpad.cc
 | 
| +++ b/components/crash/content/app/crashpad.cc
 | 
| @@ -90,10 +90,6 @@ bool LogMessageHandler(int severity,
 | 
|    return false;
 | 
|  }
 | 
|  
 | 
| -void DumpWithoutCrashing() {
 | 
| -  CRASHPAD_SIMULATE_CRASH();
 | 
| -}
 | 
| -
 | 
|  void InitializeCrashpadImpl(bool initial_client,
 | 
|                              const std::string& process_type,
 | 
|                              const std::string& user_data_dir,
 | 
| @@ -306,6 +302,10 @@ void RequestSingleCrashUpload(const std::string& local_id) {
 | 
|    g_database->RequestUpload(uuid);
 | 
|  }
 | 
|  
 | 
| +void DumpWithoutCrashing() {
 | 
| +  CRASHPAD_SIMULATE_CRASH();
 | 
| +}
 | 
| +
 | 
|  }  // namespace crash_reporter
 | 
|  
 | 
|  #if defined(OS_WIN)
 | 
| 
 |