| Index: chrome/app/chrome_main.cc
 | 
| diff --git a/chrome/app/chrome_main.cc b/chrome/app/chrome_main.cc
 | 
| index 25b891f3fe8af7ae67b86c6f9097377581f3a29e..f9d6c5d4982e8fcee0df814831f233b8cd52d3b5 100644
 | 
| --- a/chrome/app/chrome_main.cc
 | 
| +++ b/chrome/app/chrome_main.cc
 | 
| @@ -34,6 +34,7 @@
 | 
|  #include "chrome/common/chrome_constants.h"
 | 
|  #include "chrome/install_static/initialize_from_primary_module.h"
 | 
|  #include "chrome/install_static/install_details.h"
 | 
| +#include "chrome_elf/chrome_elf_main.h"
 | 
|  
 | 
|  #define DLLEXPORT __declspec(dllexport)
 | 
|  
 | 
| @@ -74,15 +75,7 @@ int ChromeMain(int argc, const char** argv) {
 | 
|    params.instance = instance;
 | 
|    params.sandbox_info = sandbox_info;
 | 
|  
 | 
| -  // SetDumpWithoutCrashingFunction must be passed the DumpProcess function
 | 
| -  // from chrome_elf and not from the DLL in order for DumpWithoutCrashing to
 | 
| -  // function correctly.
 | 
| -  typedef void (__cdecl *DumpProcessFunction)();
 | 
| -  DumpProcessFunction DumpProcess = reinterpret_cast<DumpProcessFunction>(
 | 
| -      ::GetProcAddress(::GetModuleHandle(chrome::kChromeElfDllName),
 | 
| -                       "DumpProcessWithoutCrash"));
 | 
| -  CHECK(DumpProcess);
 | 
| -  base::debug::SetDumpWithoutCrashingFunction(DumpProcess);
 | 
| +  base::debug::SetDumpWithoutCrashingFunction(&DumpWithoutCrashing);
 | 
|  
 | 
|    // Verify that chrome_elf and this module (chrome.dll and chrome_child.dll)
 | 
|    // have the same version.
 | 
| 
 |