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

Unified Diff: components/crash/content/app/crashpad_mac.mm

Issue 2478633002: Update Crashpad to b47bf6c250c6b825dee1c5fbad9152c2c962e828 (Closed)
Patch Set: mac Created 4 years, 1 month 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
Index: components/crash/content/app/crashpad_mac.mm
diff --git a/components/crash/content/app/crashpad_mac.mm b/components/crash/content/app/crashpad_mac.mm
index 3223dddc38df570cb6c3eff4b931f07a9a66d46b..1429340f62480f4e4e2a2f66a85e4be30ca86f98 100644
--- a/components/crash/content/app/crashpad_mac.mm
+++ b/components/crash/content/app/crashpad_mac.mm
@@ -97,15 +97,13 @@ base::FilePath PlatformCrashpadInitialization(bool initial_client,
url,
process_annotations,
arguments,
- true);
- if (result) {
- result = crashpad_client.UseHandler();
- }
+ true,
+ false);
// If this is an initial client that's not the browser process, it's
// important to sever the connection to any existing handler. If
- // StartHandler() or UseHandler() failed, call UseSystemDefaultHandler()
- // in that case to drop the link to the existing handler.
+ // StartHandler() call UseSystemDefaultHandler() in that case to drop the
Mark Mentovai 2016/11/03 21:35:30 Removed too many words here.
scottmg 2016/11/03 22:01:08 Done.
+ // link to the existing handler.
if (!result && !browser_process) {
crashpad::CrashpadClient::UseSystemDefaultHandler();
}

Powered by Google App Engine
This is Rietveld 408576698