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

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

Issue 521753002: Chromecast: adds CastBrowserProcess to manage browser process entities. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed obsolete member Created 6 years, 4 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.cc
diff --git a/chromecast/shell/browser/cast_browser_process.cc b/chromecast/shell/browser/cast_browser_process.cc
new file mode 100644
index 0000000000000000000000000000000000000000..70802aac0b4a8cf2fc870899ecf13a85b948ca78
--- /dev/null
+++ b/chromecast/shell/browser/cast_browser_process.cc
@@ -0,0 +1,60 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chromecast/shell/browser/cast_browser_process.h"
+
+#include "base/logging.h"
+#include "chromecast/metrics/cast_metrics_service_client.h"
+#include "chromecast/service/cast_service.h"
+#include "chromecast/shell/browser/cast_browser_context.h"
+#include "chromecast/shell/browser/devtools/remote_debugging_server.h"
+
+namespace chromecast {
+namespace shell {
+
+namespace {
+CastBrowserProcess* g_instance = NULL;
+} // namespace
+
+// static
+CastBrowserProcess* CastBrowserProcess::GetInstance() {
+ DCHECK(g_instance);
+ return g_instance;
+}
+
+CastBrowserProcess::CastBrowserProcess() {
+ DCHECK(!g_instance);
+ g_instance = this;
+}
+
+CastBrowserProcess::~CastBrowserProcess() {
+ DCHECK_EQ(g_instance, this);
+ g_instance = NULL;
+}
+
+void CastBrowserProcess::SetBrowserContext(
+ CastBrowserContext* browser_context) {
+ DCHECK(!browser_context_);
+ browser_context_.reset(browser_context);
+}
+
+void CastBrowserProcess::SetCastService(CastService* cast_service) {
+ DCHECK(!cast_service_);
+ cast_service_.reset(cast_service);
+}
+
+void CastBrowserProcess::SetRemoteDebuggingServer(
+ RemoteDebuggingServer* remote_debugging_server) {
+ DCHECK(!remote_debugging_server_);
+ remote_debugging_server_.reset(remote_debugging_server);
+}
+
+void CastBrowserProcess::SetMetricsServiceClient(
+ metrics::CastMetricsServiceClient* metrics_service_client) {
+ DCHECK(!metrics_service_client_);
+ metrics_service_client_.reset(metrics_service_client);
+}
+
+} // namespace shell
+} // namespace chromecast
« no previous file with comments | « chromecast/shell/browser/cast_browser_process.h ('k') | chromecast/shell/browser/cast_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698