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

Side by Side Diff: chrome/browser/media/router/extension_mrpm_host_factory.h

Issue 1020743003: [Media Router] Design MediaRouter interface with stub implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move MRPMH::Delegate inheritence from MR to MRImpl Created 5 years, 8 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_EXTENSION_MRPM_HOST_FACTORY_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_EXTENSION_MRPM_HOST_FACTORY_H_
7
8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
10
11 namespace content {
12 class BrowserContext;
13 } // namespace content
14
15 namespace media_router {
16
17 class ExtensionMediaRouteProviderManagerHost;
18
19 // A factory that lazily creates and/or returns a
20 // ExtensionMediaRouteProviderManagerHost object on a per BrowserContext basis.
Kevin M 2015/03/26 20:50:14 for a given BrowserContext?
imcheng 2015/03/26 23:33:12 Done.
21 class ExtensionMRPMHostFactory : public BrowserContextKeyedServiceFactory {
22 public:
23 static ExtensionMediaRouteProviderManagerHost* GetMRPMHostForBrowserContext(
24 content::BrowserContext* context);
25 static ExtensionMRPMHostFactory* GetInstance();
26
27 private:
28 friend struct DefaultSingletonTraits<ExtensionMRPMHostFactory>;
29
30 ExtensionMRPMHostFactory();
31 ~ExtensionMRPMHostFactory() override;
32
33 // BrowserContextKeyedBaseFactory
34 KeyedService* BuildServiceInstanceFor(
35 content::BrowserContext* context) const override;
36 content::BrowserContext* GetBrowserContextToUse(
37 content::BrowserContext* context) const override;
38
39 DISALLOW_COPY_AND_ASSIGN(ExtensionMRPMHostFactory);
40 };
41
42 } // namespace media_router
43
44 #endif // CHROME_BROWSER_MEDIA_ROUTER_EXTENSION_MRPM_HOST_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698