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

Unified Diff: chrome/browser/media/router/offscreen_presentation_manager_factory.cc

Issue 2343013002: [Presentation API] (MR side) 1-UA: notify receiver page when receiver connection becomes available (Closed)
Patch Set: resolve code review comments from Derek Created 4 years, 3 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: chrome/browser/media/router/offscreen_presentation_manager_factory.cc
diff --git a/chrome/browser/media/router/offscreen_presentation_manager_factory.cc b/chrome/browser/media/router/offscreen_presentation_manager_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b15f5dfdb420337ab66087a5558657c13dba1d4e
--- /dev/null
+++ b/chrome/browser/media/router/offscreen_presentation_manager_factory.cc
@@ -0,0 +1,46 @@
+// Copyright 2015 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 "chrome/browser/media/router/offscreen_presentation_manager_factory.h"
+
+#include "base/lazy_instance.h"
+#include "chrome/browser/media/router/offscreen_presentation_manager.h"
+#include "chrome/browser/profiles/incognito_helpers.h"
+#include "components/keyed_service/content/browser_context_dependency_manager.h"
+
+namespace media_router {
+
+namespace {
+
+base::LazyInstance<OffscreenPresentationManagerFactory> service_factory =
+ LAZY_INSTANCE_INITIALIZER;
+
+} // namespace
+
+// static
+OffscreenPresentationManager*
+OffscreenPresentationManagerFactory::GetOrCreateForBrowserContext(
+ content::BrowserContext* context) {
+ DCHECK(context);
+ return static_cast<OffscreenPresentationManager*>(
+ service_factory.Get().GetServiceForBrowserContext(context, true));
+}
+
+OffscreenPresentationManagerFactory::OffscreenPresentationManagerFactory()
+ : BrowserContextKeyedServiceFactory(
+ "OffscreenPresentationManager",
+ BrowserContextDependencyManager::GetInstance()) {}
+OffscreenPresentationManagerFactory::~OffscreenPresentationManagerFactory() {}
+
+content::BrowserContext*
+OffscreenPresentationManagerFactory::GetBrowserContextToUse(
+ content::BrowserContext* context) const {
+ return chrome::GetBrowserContextRedirectedInIncognito(context);
+}
+KeyedService* OffscreenPresentationManagerFactory::BuildServiceInstanceFor(
+ content::BrowserContext* context) const {
+ return new OffscreenPresentationManager;
+}
+
+} // namespace media_router

Powered by Google App Engine
This is Rietveld 408576698