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

Unified Diff: chrome/app/chrome_main_delegate.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/app/chrome_crash_reporter_client_mac.mm ('k') | chrome/app/client_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_main_delegate.cc
diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
index 8bd915997281c03171ad3ebd2e00edc4ff6fb4c5..3449188abfdf9c3cae038bf6a97e8ef24fb3a416 100644
--- a/chrome/app/chrome_main_delegate.cc
+++ b/chrome/app/chrome_main_delegate.cc
@@ -67,8 +67,8 @@
#if defined(OS_POSIX)
#include <locale.h>
#include <signal.h>
-#include "chrome/app/chrome_breakpad_client.h"
-#include "components/crash/app/breakpad_client.h"
+#include "chrome/app/chrome_crash_reporter_client.h"
+#include "components/crash/app/crash_reporter_client.h"
#endif
#if !defined(DISABLE_NACL) && defined(OS_LINUX)
@@ -128,8 +128,8 @@ base::LazyInstance<chrome::ChromeContentPluginClient>
#endif
#if defined(OS_POSIX)
-base::LazyInstance<chrome::ChromeBreakpadClient>::Leaky
- g_chrome_breakpad_client = LAZY_INSTANCE_INITIALIZER;
+base::LazyInstance<chrome::ChromeCrashReporterClient>::Leaky
+ g_chrome_crash_client = LAZY_INSTANCE_INITIALIZER;
#endif
extern int NaClMain(const content::MainFunctionParams&);
@@ -639,7 +639,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
command_line.GetSwitchValueASCII(switches::kProcessType);
#if defined(OS_POSIX)
- breakpad::SetBreakpadClient(g_chrome_breakpad_client.Pointer());
+ crash_reporter::SetCrashReporterClient(g_chrome_crash_client.Pointer());
#endif
#if defined(OS_MACOSX)
« no previous file with comments | « chrome/app/chrome_crash_reporter_client_mac.mm ('k') | chrome/app/client_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698