chromium/components/media_router/browser/presentation/local_presentation_manager_factory.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 =;

}  // namespace

// static
LocalPresentationManager*
LocalPresentationManagerFactory::GetOrCreateForWebContents(
    content::WebContents* web_contents) {}

// static
LocalPresentationManager*
LocalPresentationManagerFactory::GetOrCreateForBrowserContext(
    content::BrowserContext* context) {}

LocalPresentationManagerFactory::LocalPresentationManagerFactory()
    :{}

LocalPresentationManagerFactory::~LocalPresentationManagerFactory() {}

std::unique_ptr<KeyedService>
LocalPresentationManagerFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}

}  // namespace media_router