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

Unified Diff: components/crash/app/hard_error_handler_win.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 | « components/crash/app/crash_reporter_client.cc ('k') | content/content_shell.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/app/hard_error_handler_win.cc
diff --git a/components/crash/app/hard_error_handler_win.cc b/components/crash/app/hard_error_handler_win.cc
index 0bd659156315ba1abac7c8485ed748884a3e09fd..50425e92eecca9dec1ec35c34884d7046a7c1493 100644
--- a/components/crash/app/hard_error_handler_win.cc
+++ b/components/crash/app/hard_error_handler_win.cc
@@ -14,10 +14,12 @@
#include "base/basictypes.h"
#include "base/strings/string_util.h"
-#include "components/crash/app/breakpad_client.h"
+#include "components/crash/app/crash_reporter_client.h"
namespace breakpad {
+using crash_reporter::GetCrashReporterClient;
+
namespace {
const DWORD kExceptionModuleNotFound = VcppException(ERROR_SEVERITY_ERROR,
ERROR_MOD_NOT_FOUND);
@@ -39,7 +41,7 @@ DWORD FacilityFromException(DWORD exception_code) {
void RaiseHardErrorMsg(long nt_status, const std::string& p1,
const std::string& p2) {
// If headless just exit silently.
- if (GetBreakpadClient()->IsRunningUnattended())
+ if (GetCrashReporterClient()->IsRunningUnattended())
return;
HMODULE ntdll = ::GetModuleHandleA("NTDLL.DLL");
« no previous file with comments | « components/crash/app/crash_reporter_client.cc ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698