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

Side by Side Diff: chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory.cc

Issue 14141006: [components] Switch {RefCounted}ProfileKeyedService to use BrowserContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for review Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory .h" 5 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory .h"
6 6
7 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry.h" 7 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry.h"
8 #include "chrome/browser/extensions/api/discovery/suggested_links_registry.h" 8 #include "chrome/browser/extensions/api/discovery/suggested_links_registry.h"
9 #include "chrome/browser/extensions/extension_system_factory.h" 9 #include "chrome/browser/extensions/extension_system_factory.h"
10 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_dependency_manager.h" 11 #include "chrome/browser/profiles/profile_dependency_manager.h"
11 12
12 namespace extensions { 13 namespace extensions {
13 14
14 // static 15 // static
15 TabCaptureRegistry* TabCaptureRegistryFactory::GetForProfile(Profile* profile) { 16 TabCaptureRegistry* TabCaptureRegistryFactory::GetForProfile(Profile* profile) {
16 return static_cast<TabCaptureRegistry*>( 17 return static_cast<TabCaptureRegistry*>(
17 GetInstance()->GetServiceForProfile(profile, true)); 18 GetInstance()->GetServiceForProfile(profile, true));
18 } 19 }
19 20
20 // static 21 // static
21 TabCaptureRegistryFactory* TabCaptureRegistryFactory::GetInstance() { 22 TabCaptureRegistryFactory* TabCaptureRegistryFactory::GetInstance() {
22 return Singleton<TabCaptureRegistryFactory>::get(); 23 return Singleton<TabCaptureRegistryFactory>::get();
23 } 24 }
24 25
25 bool TabCaptureRegistryFactory::ServiceIsCreatedWithProfile() const { 26 bool TabCaptureRegistryFactory::ServiceIsCreatedWithProfile() const {
26 return false; 27 return false;
27 } 28 }
28 29
29 TabCaptureRegistryFactory::TabCaptureRegistryFactory() 30 TabCaptureRegistryFactory::TabCaptureRegistryFactory()
30 : ProfileKeyedServiceFactory("TabCaptureRegistry", 31 : ProfileKeyedServiceFactory("TabCaptureRegistry",
31 ProfileDependencyManager::GetInstance()) { 32 ProfileDependencyManager::GetInstance()) {
32 DependsOn(ExtensionSystemFactory::GetInstance()); 33 DependsOn(ExtensionSystemFactory::GetInstance());
33 } 34 }
34 35
35 TabCaptureRegistryFactory::~TabCaptureRegistryFactory() { 36 TabCaptureRegistryFactory::~TabCaptureRegistryFactory() {
36 } 37 }
37 38
38 ProfileKeyedService* TabCaptureRegistryFactory::BuildServiceInstanceFor( 39 ProfileKeyedService* TabCaptureRegistryFactory::BuildServiceInstanceFor(
39 Profile* profile) const { 40 content::BrowserContext* profile) const {
40 return new TabCaptureRegistry(profile); 41 return new TabCaptureRegistry(static_cast<Profile*>(profile));
41 } 42 }
42 43
43 bool TabCaptureRegistryFactory::ServiceRedirectedInIncognito() const { 44 bool TabCaptureRegistryFactory::ServiceRedirectedInIncognito() const {
44 return true; 45 return true;
45 } 46 }
46 47
47 } // namespace extensions 48 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698