| Index: chrome/nacl/nacl_exe_win_64.cc
|
| diff --git a/chrome/nacl/nacl_exe_win_64.cc b/chrome/nacl/nacl_exe_win_64.cc
|
| index ec9e5387b438b479d2a7283483d90977fbae1ae0..0f6b3a7b79efe4e7f70f12aebbac2bc2731eff9e 100644
|
| --- a/chrome/nacl/nacl_exe_win_64.cc
|
| +++ b/chrome/nacl/nacl_exe_win_64.cc
|
| @@ -5,15 +5,15 @@
|
| #include "base/at_exit.h"
|
| #include "base/command_line.h"
|
| #include "base/lazy_instance.h"
|
| -#include "chrome/app/chrome_breakpad_client.h"
|
| +#include "chrome/app/chrome_crash_reporter_client.h"
|
| #include "components/crash/app/breakpad_win.h"
|
| #include "components/nacl/loader/nacl_helper_win_64.h"
|
| #include "content/public/common/content_switches.h"
|
|
|
| namespace {
|
|
|
| -base::LazyInstance<chrome::ChromeBreakpadClient>::Leaky
|
| - g_chrome_breakpad_client = LAZY_INSTANCE_INITIALIZER;
|
| +base::LazyInstance<chrome::ChromeCrashReporterClient>::Leaky
|
| + g_chrome_crash_client = LAZY_INSTANCE_INITIALIZER;
|
|
|
| } // namespace
|
|
|
| @@ -24,7 +24,7 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) {
|
| std::string process_type =
|
| CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| switches::kProcessType);
|
| - breakpad::SetBreakpadClient(g_chrome_breakpad_client.Pointer());
|
| + crash_reporter::SetCrashReporterClient(g_chrome_crash_client.Pointer());
|
| breakpad::InitCrashReporter(process_type);
|
|
|
| return nacl::NaClWin64Main();
|
|
|