#include "components/media_router/browser/presentation/local_presentation_manager_factory.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/media_router/browser/presentation/local_presentation_manager.h"
#include "content/public/browser/web_contents.h"
namespace media_router {
namespace {
LocalPresentationManagerFactory* g_instance = …;
}
LocalPresentationManager*
LocalPresentationManagerFactory::GetOrCreateForWebContents(
content::WebContents* web_contents) { … }
LocalPresentationManager*
LocalPresentationManagerFactory::GetOrCreateForBrowserContext(
content::BrowserContext* context) { … }
LocalPresentationManagerFactory::LocalPresentationManagerFactory()
: … { … }
LocalPresentationManagerFactory::~LocalPresentationManagerFactory() { … }
std::unique_ptr<KeyedService>
LocalPresentationManagerFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
}