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

Unified Diff: chrome/app/breakpad_linux.cc

Issue 6471017: Merge 73639 - Adding crash reporting on Linux for the GPU process.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/648/src/
Patch Set: Created 9 years, 10 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 | chrome/browser/child_process_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/breakpad_linux.cc
===================================================================
--- chrome/app/breakpad_linux.cc (revision 74410)
+++ chrome/app/breakpad_linux.cc (working copy)
@@ -646,7 +646,7 @@
}
}
-// Currently Non-Browser = Renderer, Plugins and Native Client
+// Currently Non-Browser = Renderer, Plugins, Native Client and Gpu
static bool
NonBrowserCrashHandler(const void* crash_context, size_t crash_context_size,
void* context) {
@@ -748,7 +748,8 @@
} else if (process_type == switches::kRendererProcess ||
process_type == switches::kPluginProcess ||
process_type == switches::kZygoteProcess ||
- process_type == switches::kNaClLoaderProcess) {
+ process_type == switches::kNaClLoaderProcess ||
+ process_type == switches::kGpuProcess) {
// We might be chrooted in a zygote or renderer process so we cannot call
// GetCollectStatsConsent because that needs access the the user's home
// dir. Instead, we set a command line flag for these processes.
« no previous file with comments | « no previous file | chrome/browser/child_process_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698