chromium/chrome/browser/media/router/chrome_media_router_factory.h

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

#ifndef CHROME_BROWSER_MEDIA_ROUTER_CHROME_MEDIA_ROUTER_FACTORY_H_
#define CHROME_BROWSER_MEDIA_ROUTER_CHROME_MEDIA_ROUTER_FACTORY_H_

#include "base/gtest_prod_util.h"
#include "base/lazy_instance.h"
#include "components/media_router/browser/media_router_factory.h"

namespace content {
class BrowserContext;
}

namespace media_router {

// A version of MediaRouterFactory for Chrome. It adds support for desktop
// features.
class ChromeMediaRouterFactory : public MediaRouterFactory {};

}  // namespace media_router

#endif  // CHROME_BROWSER_MEDIA_ROUTER_CHROME_MEDIA_ROUTER_FACTORY_H_