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

Unified Diff: chrome/app/chrome_main_delegate.cc

Issue 329423003: Make logic for disabling OS crash catcher on OSX match comment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Whitespace Created 6 years, 6 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 | « no previous file | no next file » | 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 168b32e9883ab402090cd3b268de83123403f838..f8b72dde8e721b54329cc63830d526fd70777efa 100644
--- a/chrome/app/chrome_main_delegate.cc
+++ b/chrome/app/chrome_main_delegate.cc
@@ -579,12 +579,10 @@ void ChromeMainDelegate::InitMacCrashReporter(
// itself.
// * If Breakpad is disabled, we only turn on Crash Reporter for the
// Browser process in release mode.
- if (!command_line.HasSwitch(switches::kDisableBreakpad)) {
- bool disable_apple_crash_reporter = is_debug_build ||
- base::mac::IsBackgroundOnlyProcess();
- if (!breakpad::IsCrashReporterEnabled() && disable_apple_crash_reporter) {
- base::mac::DisableOSCrashDumps();
- }
+ if (base::mac::IsBackgroundOnlyProcess() ||
+ breakpad::IsCrashReporterEnabled() ||
+ is_debug_build) {
+ base::mac::DisableOSCrashDumps();
}
// Mac Chrome is packaged with a main app bundle and a helper app bundle.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698