OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_SHELL_BROWSER_CAST_BROWSER_PROCESS_H_ | 5 #ifndef CHROMECAST_SHELL_BROWSER_CAST_BROWSER_PROCESS_H_ |
6 #define CHROMECAST_SHELL_BROWSER_CAST_BROWSER_PROCESS_H_ | 6 #define CHROMECAST_SHELL_BROWSER_CAST_BROWSER_PROCESS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 static CastBrowserProcess* GetInstance(); | 32 static CastBrowserProcess* GetInstance(); |
33 | 33 |
34 CastBrowserProcess(); | 34 CastBrowserProcess(); |
35 virtual ~CastBrowserProcess(); | 35 virtual ~CastBrowserProcess(); |
36 | 36 |
37 void SetBrowserContext(CastBrowserContext* browser_context); | 37 void SetBrowserContext(CastBrowserContext* browser_context); |
38 void SetCastService(CastService* cast_service); | 38 void SetCastService(CastService* cast_service); |
39 void SetRemoteDebuggingServer(RemoteDebuggingServer* remote_debugging_server); | 39 void SetRemoteDebuggingServer(RemoteDebuggingServer* remote_debugging_server); |
40 void SetMetricsServiceClient( | 40 void SetMetricsServiceClient( |
41 metrics::CastMetricsServiceClient* metrics_service_client); | 41 metrics::CastMetricsServiceClient* metrics_service_client); |
| 42 #if defined(OS_ANDROID) |
| 43 void SetCrashDumpManager(breakpad::CrashDumpManager* crash_dump_manager); |
| 44 #endif // defined(OS_ANDROID) |
42 | 45 |
43 CastBrowserContext* browser_context() const { return browser_context_.get(); } | 46 CastBrowserContext* browser_context() const { return browser_context_.get(); } |
44 CastService* cast_service() const { return cast_service_.get(); } | 47 CastService* cast_service() const { return cast_service_.get(); } |
45 metrics::CastMetricsServiceClient* metrics_service_client() const { | 48 metrics::CastMetricsServiceClient* metrics_service_client() const { |
46 return metrics_service_client_.get(); | 49 return metrics_service_client_.get(); |
47 } | 50 } |
48 | 51 |
49 private: | 52 private: |
50 scoped_ptr<CastBrowserContext> browser_context_; | 53 scoped_ptr<CastBrowserContext> browser_context_; |
51 scoped_ptr<metrics::CastMetricsServiceClient> metrics_service_client_; | 54 scoped_ptr<metrics::CastMetricsServiceClient> metrics_service_client_; |
52 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; | 55 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; |
| 56 #if defined(OS_ANDROID) |
| 57 scoped_ptr<breakpad::CrashDumpManager> crash_dump_manager_; |
| 58 #endif // defined(OS_ANDROID) |
53 | 59 |
54 // Note: CastService must be destroyed before others. | 60 // Note: CastService must be destroyed before others. |
55 scoped_ptr<CastService> cast_service_; | 61 scoped_ptr<CastService> cast_service_; |
56 | 62 |
57 DISALLOW_COPY_AND_ASSIGN(CastBrowserProcess); | 63 DISALLOW_COPY_AND_ASSIGN(CastBrowserProcess); |
58 }; | 64 }; |
59 | 65 |
60 } // namespace shell | 66 } // namespace shell |
61 } // namespace chromecast | 67 } // namespace chromecast |
62 | 68 |
63 #endif // CHROMECAST_SHELL_BROWSER_CAST_BROWSER_PROCESS_H_ | 69 #endif // CHROMECAST_SHELL_BROWSER_CAST_BROWSER_PROCESS_H_ |
OLD | NEW |