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

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: comments Created 4 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
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 7ead9624c33bb107db2ef0a16c20e56d9953fb1d..f133ba648874e7ee14e487c6eaba2e8dd8542e79 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -48,6 +48,10 @@ namespace android_webview {
namespace {
+const char kWebViewSingleProcessType[] = "webview-singleprocess";
Torne 2016/06/25 14:05:16 These seem really long; bikeshedding a bit, but it
hush (inactive) 2016/06/27 22:15:26 The problem with just "webview-browser" is only un
+const char kWebViewBrowserProcessType[] = "webview-multiprocess-browser";
+const char kWebViewRendererProcessType[] = "webview-multiprocess-renderer";
+
// TODO(boliu): Remove this global Allow once the underlying issues are
// resolved - http://crbug.com/240453. See AwMainDelegate::RunProcess below.
base::LazyInstance<std::unique_ptr<ScopedAllowWaitForLegacyWebViewApi>>
@@ -169,11 +173,14 @@ void AwMainDelegate::PreSandboxStartup() {
base::File(pak_fd), pak_region, ui::SCALE_FACTOR_NONE);
crash_signal_fd =
global_descriptors->Get(kAndroidWebViewCrashSignalDescriptor);
+ process_type = kWebViewRendererProcessType;
Torne 2016/06/25 14:05:16 Having a couple of hardcoded cases where we change
hush (inactive) 2016/06/27 22:15:26 Just prepending "webview-" to process_type does no
}
- 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 = kWebViewSingleProcessType;
+ } else {
+ process_type = kWebViewBrowserProcessType;
+ }
}
crash_reporter::EnableMicrodumpCrashReporter(process_type, crash_signal_fd);
« no previous file with comments | « no previous file | components/crash/content/app/breakpad_linux.cc » ('j') | components/crash/content/app/breakpad_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698