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

Unified Diff: components/crash/browser/crash_dump_manager_android.cc

Issue 1067733006: Add extra parameter to BrowserChildProcessCrashed to pass the exit_code at time of crash/termination (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac compile fix Created 5 years, 8 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
Index: components/crash/browser/crash_dump_manager_android.cc
diff --git a/components/crash/browser/crash_dump_manager_android.cc b/components/crash/browser/crash_dump_manager_android.cc
index 4814afdc758d7a6756e0f8c9549143de52faf76b..413020321313584af8c6eb396817b6ad1ca2da94 100644
--- a/components/crash/browser/crash_dump_manager_android.cc
+++ b/components/crash/browser/crash_dump_manager_android.cc
@@ -126,7 +126,8 @@ void CrashDumpManager::BrowserChildProcessHostDisconnected(
}
void CrashDumpManager::BrowserChildProcessCrashed(
- const content::ChildProcessData& data) {
+ const content::ChildProcessData& data,
+ int exit_code) {
OnChildExit(data.id, data.handle);
}

Powered by Google App Engine
This is Rietveld 408576698