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

Unified Diff: chromecast/shell/browser/cast_browser_process.h

Issue 620673003: Chromecast: adds crash handling for Android build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address lei's comments Created 6 years, 2 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: chromecast/shell/browser/cast_browser_process.h
diff --git a/chromecast/shell/browser/cast_browser_process.h b/chromecast/shell/browser/cast_browser_process.h
index 65830c2a3a09958022878c20b96369164327c20f..ba625ac1a16872f0f4419718605c5a0f7ac2de09 100644
--- a/chromecast/shell/browser/cast_browser_process.h
+++ b/chromecast/shell/browser/cast_browser_process.h
@@ -39,6 +39,9 @@ class CastBrowserProcess {
void SetRemoteDebuggingServer(RemoteDebuggingServer* remote_debugging_server);
void SetMetricsServiceClient(
metrics::CastMetricsServiceClient* metrics_service_client);
+#if defined(OS_ANDROID)
+ void SetCrashDumpManager(breakpad::CrashDumpManager* crash_dump_manager);
+#endif // defined(OS_ANDROID)
CastBrowserContext* browser_context() const { return browser_context_.get(); }
CastService* cast_service() const { return cast_service_.get(); }
@@ -50,6 +53,9 @@ class CastBrowserProcess {
scoped_ptr<CastBrowserContext> browser_context_;
scoped_ptr<metrics::CastMetricsServiceClient> metrics_service_client_;
scoped_ptr<RemoteDebuggingServer> remote_debugging_server_;
+#if defined(OS_ANDROID)
+ scoped_ptr<breakpad::CrashDumpManager> crash_dump_manager_;
+#endif // defined(OS_ANDROID)
// Note: CastService must be destroyed before others.
scoped_ptr<CastService> cast_service_;
« no previous file with comments | « chromecast/shell/browser/cast_browser_main_parts.cc ('k') | chromecast/shell/browser/cast_browser_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698