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

Unified Diff: android_webview/lib/main/aw_main_delegate.cc

Issue 2086483006: Dump process type into breakpad. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 5 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 | components/crash/content/app/breakpad_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/main/aw_main_delegate.cc
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index c45272bc4c9886cad0dca5d43b3fe893a20981c2..4939a14d5e0dff1168d94ebbcc2483d7ea8aaba0 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -30,6 +30,7 @@
#include "base/logging.h"
#include "base/threading/thread_restrictions.h"
#include "cc/base/switches.h"
+#include "components/crash/content/app/breakpad_linux.h"
#include "components/external_video_surface/browser/android/external_video_surface_container_impl.h"
#include "content/public/browser/android/browser_media_player_manager_register.h"
#include "content/public/browser/browser_main_runner.h"
@@ -167,10 +168,12 @@ void AwMainDelegate::PreSandboxStartup() {
crash_signal_fd =
global_descriptors->Get(kAndroidWebViewCrashSignalDescriptor);
}
- if (process_type.empty() &&
- command_line.HasSwitch(switches::kSingleProcess)) {
- // "webview" has a special treatment in breakpad_linux.cc.
- process_type = "webview";
+ if (process_type.empty()) {
+ if (command_line.HasSwitch(switches::kSingleProcess)) {
+ process_type = breakpad::kWebViewSingleProcessType;
+ } else {
+ process_type = breakpad::kBrowserProcessType;
+ }
}
crash_reporter::EnableMicrodumpCrashReporter(process_type, crash_signal_fd);
« no previous file with comments | « no previous file | components/crash/content/app/breakpad_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698