Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: chrome/nacl/nacl_exe_win_64.cc

Issue 585633002: Rename BreakpadClient to CrashReporterClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/nacl/DEPS ('k') | chrome/test/base/chrome_test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « chrome/nacl/DEPS ('k') | chrome/test/base/chrome_test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698