OLD | NEW |
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/discovery/suggested_links_registry.h" | 7 #include "chrome/browser/extensions/api/discovery/suggested_links_registry.h" |
8 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry.h" | 8 #include "chrome/browser/extensions/api/tab_capture/tab_capture_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/incognito_helpers.h" | 10 #include "chrome/browser/profiles/incognito_helpers.h" |
11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
12 #include "components/browser_context_keyed_service/browser_context_dependency_ma
nager.h" | 12 #include "components/browser_context_keyed_service/browser_context_dependency_ma
nager.h" |
13 | 13 |
14 namespace extensions { | 14 namespace extensions { |
15 | 15 |
16 // static | 16 // static |
17 TabCaptureRegistry* TabCaptureRegistryFactory::GetForProfile(Profile* profile) { | 17 TabCaptureRegistry* TabCaptureRegistryFactory::GetForProfile(Profile* profile) { |
18 return static_cast<TabCaptureRegistry*>( | 18 return static_cast<TabCaptureRegistry*>( |
19 GetInstance()->GetServiceForProfile(profile, true)); | 19 GetInstance()->GetServiceForBrowserContext(profile, true)); |
20 } | 20 } |
21 | 21 |
22 // static | 22 // static |
23 TabCaptureRegistryFactory* TabCaptureRegistryFactory::GetInstance() { | 23 TabCaptureRegistryFactory* TabCaptureRegistryFactory::GetInstance() { |
24 return Singleton<TabCaptureRegistryFactory>::get(); | 24 return Singleton<TabCaptureRegistryFactory>::get(); |
25 } | 25 } |
26 | 26 |
27 bool TabCaptureRegistryFactory::ServiceIsCreatedWithProfile() const { | 27 bool TabCaptureRegistryFactory::ServiceIsCreatedWithBrowserContext() const { |
28 return false; | 28 return false; |
29 } | 29 } |
30 | 30 |
31 TabCaptureRegistryFactory::TabCaptureRegistryFactory() | 31 TabCaptureRegistryFactory::TabCaptureRegistryFactory() |
32 : ProfileKeyedServiceFactory("TabCaptureRegistry", | 32 : BrowserContextKeyedServiceFactory( |
33 ProfileDependencyManager::GetInstance()) { | 33 "TabCaptureRegistry", |
| 34 BrowserContextDependencyManager::GetInstance()) { |
34 DependsOn(ExtensionSystemFactory::GetInstance()); | 35 DependsOn(ExtensionSystemFactory::GetInstance()); |
35 } | 36 } |
36 | 37 |
37 TabCaptureRegistryFactory::~TabCaptureRegistryFactory() { | 38 TabCaptureRegistryFactory::~TabCaptureRegistryFactory() { |
38 } | 39 } |
39 | 40 |
40 ProfileKeyedService* TabCaptureRegistryFactory::BuildServiceInstanceFor( | 41 BrowserContextKeyedService* TabCaptureRegistryFactory::BuildServiceInstanceFor( |
41 content::BrowserContext* profile) const { | 42 content::BrowserContext* profile) const { |
42 return new TabCaptureRegistry(static_cast<Profile*>(profile)); | 43 return new TabCaptureRegistry(static_cast<Profile*>(profile)); |
43 } | 44 } |
44 | 45 |
45 content::BrowserContext* TabCaptureRegistryFactory::GetBrowserContextToUse( | 46 content::BrowserContext* TabCaptureRegistryFactory::GetBrowserContextToUse( |
46 content::BrowserContext* context) const { | 47 content::BrowserContext* context) const { |
47 return chrome::GetBrowserContextRedirectedInIncognito(context); | 48 return chrome::GetBrowserContextRedirectedInIncognito(context); |
48 } | 49 } |
49 | 50 |
50 } // namespace extensions | 51 } // namespace extensions |
OLD | NEW |