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..46d7149dc74d35e3d94fc497af19f4a13d65ebcb 100644 |
--- a/chromecast/shell/browser/cast_browser_process.h |
+++ b/chromecast/shell/browser/cast_browser_process.h |
@@ -36,6 +36,9 @@ class CastBrowserProcess { |
void SetBrowserContext(CastBrowserContext* browser_context); |
void SetCastService(CastService* cast_service); |
+#if defined(OS_ANDROID) |
Lei Zhang
2014/10/06 22:44:25
nit: maybe move this to after the other setters?
gunsch
2014/10/09 00:20:56
Done.
|
+ void SetCrashDumpManager(breakpad::CrashDumpManager* crash_dump_manager); |
+#endif // defined(OS_ANDROID) |
void SetRemoteDebuggingServer(RemoteDebuggingServer* remote_debugging_server); |
void SetMetricsServiceClient( |
metrics::CastMetricsServiceClient* metrics_service_client); |
@@ -48,6 +51,9 @@ class CastBrowserProcess { |
private: |
scoped_ptr<CastBrowserContext> browser_context_; |
+#if defined(OS_ANDROID) |
+ scoped_ptr<breakpad::CrashDumpManager> crash_dump_manager_; |
+#endif // defined(OS_ANDROID) |
scoped_ptr<metrics::CastMetricsServiceClient> metrics_service_client_; |
scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; |