| 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
|
|
|