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

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

Issue 2379703002: [Presentation API] (alternative) 1-UA: send message between controller and receiver page (Closed)
Patch Set: merge with master Created 4 years, 1 month 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..f5cbd3a202b89549954dc03209673ee33669f8bc
--- /dev/null
+++ b/chrome/browser/media/router/offscreen_presentation_manager_factory.cc
@@ -0,0 +1,69 @@
+// 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 "chrome/browser/profiles/profile.h"
+#include "components/keyed_service/content/browser_context_dependency_manager.h"
+#include "content/public/browser/web_contents.h"
+
+namespace media_router {
+
+namespace {
+
+base::LazyInstance<OffscreenPresentationManagerFactory> service_factory =
+ LAZY_INSTANCE_INITIALIZER;
+
+} // namespace
+
+// static
+OffscreenPresentationManager*
+OffscreenPresentationManagerFactory::GetOrCreateForControllerBrowserContext(
+ content::WebContents* web_contents) {
+ DCHECK(web_contents);
+ return OffscreenPresentationManagerFactory::GetOrCreateForBrowserContext(
+ web_contents->GetBrowserContext());
+}
+
+// static
+OffscreenPresentationManager*
+OffscreenPresentationManagerFactory::GetOrCreateForReceiverBrowserContext(
+ content::WebContents* web_contents) {
+ DCHECK(web_contents);
+ DCHECK(web_contents->GetBrowserContext()->IsOffTheRecord());
+ return OffscreenPresentationManagerFactory::GetOrCreateForBrowserContext(
+ Profile::FromBrowserContext(web_contents->GetBrowserContext())
+ ->GetOriginalProfile());
+}
+
+// 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