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

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

Issue 1132903002: [MediaRouter] Add implementation of PresentationServiceDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_IMPL_FACTORY_H_ 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_IMPL_FACTORY_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_IMPL_FACTORY_H_ 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_IMPL_FACTORY_H_
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" 9 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
10 #include "chrome/browser/media/router/media_router_impl.h"
mark a. foltz 2015/05/14 22:20:44 This file is no longer necessary with Kevin's chan
haibinlu 2015/05/15 23:32:29 Done.
10 11
11 namespace content { 12 namespace content {
12 class BrowserContext; 13 class BrowserContext;
13 } // namespace content 14 } // namespace content
14 15
15 namespace media_router { 16 namespace media_router {
16 17
17 class MediaRouterImpl;
18
19 // A factory that returns a MediaRouter object for a given BrowserContext, 18 // A factory that returns a MediaRouter object for a given BrowserContext,
20 // creating one lazily if needed. 19 // creating one lazily if needed.
21 class MediaRouterImplFactory : public BrowserContextKeyedServiceFactory { 20 class MediaRouterImplFactory : public BrowserContextKeyedServiceFactory {
22 public: 21 public:
23 static MediaRouterImpl* GetMediaRouterForBrowserContext( 22 static MediaRouterImpl* GetMediaRouterForBrowserContext(
24 content::BrowserContext* context); 23 content::BrowserContext* context);
25 static MediaRouterImplFactory* GetInstance(); 24 static MediaRouterImplFactory* GetInstance();
26 25
27 private: 26 private:
28 friend struct DefaultSingletonTraits<MediaRouterImplFactory>; 27 friend struct DefaultSingletonTraits<MediaRouterImplFactory>;
29 28
30 MediaRouterImplFactory(); 29 MediaRouterImplFactory();
31 ~MediaRouterImplFactory() override; 30 ~MediaRouterImplFactory() override;
32 31
33 // BrowserContextKeyedBaseFactory 32 // BrowserContextKeyedBaseFactory
34 KeyedService* BuildServiceInstanceFor( 33 KeyedService* BuildServiceInstanceFor(
35 content::BrowserContext* context) const override; 34 content::BrowserContext* context) const override;
36 content::BrowserContext* GetBrowserContextToUse( 35 content::BrowserContext* GetBrowserContextToUse(
37 content::BrowserContext* context) const override; 36 content::BrowserContext* context) const override;
38 37
39 DISALLOW_COPY_AND_ASSIGN(MediaRouterImplFactory); 38 DISALLOW_COPY_AND_ASSIGN(MediaRouterImplFactory);
40 }; 39 };
41 40
42 } // namespace media_router 41 } // namespace media_router
43 42
44 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_IMPL_FACTORY_H_ 43 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_IMPL_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698