| Index: chrome_elf/crash/crash_helper.cc
 | 
| diff --git a/chrome_elf/crash/crash_helper.cc b/chrome_elf/crash/crash_helper.cc
 | 
| index c658fa949b7c5040fd74fa02cfea300b290ad8e7..31ed15080abdd3ca3945fe6ce3bec5dbe2708802 100644
 | 
| --- a/chrome_elf/crash/crash_helper.cc
 | 
| +++ b/chrome_elf/crash/crash_helper.cc
 | 
| @@ -103,7 +103,7 @@ void DisableSetUnhandledExceptionFilter() {
 | 
|            SetUnhandledExceptionFilterPatch) != NO_ERROR) {
 | 
|  #ifdef _DEBUG
 | 
|      assert(false);
 | 
| -#endif  //_DEBUG
 | 
| +#endif  // _DEBUG
 | 
|    }
 | 
|  }
 | 
|  
 | 
| @@ -114,6 +114,10 @@ int GenerateCrashDump(EXCEPTION_POINTERS* exception_pointers) {
 | 
|    return EXCEPTION_CONTINUE_SEARCH;
 | 
|  }
 | 
|  
 | 
| +void DumpWithoutCrashing() {
 | 
| +  crash_reporter::DumpWithoutCrashing();
 | 
| +}
 | 
| +
 | 
|  }  // namespace elf_crash
 | 
|  
 | 
|  //------------------------------------------------------------------------------
 | 
| 
 |