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/discovery/suggested_links_registry_facto
ry.h" | 5 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto
ry.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/extension_system_factory.h" | 8 #include "chrome/browser/extensions/extension_system_factory.h" |
| 9 #include "chrome/browser/profiles/profile.h" |
9 #include "chrome/browser/profiles/profile_dependency_manager.h" | 10 #include "chrome/browser/profiles/profile_dependency_manager.h" |
10 | 11 |
11 namespace extensions { | 12 namespace extensions { |
12 | 13 |
13 // static | 14 // static |
14 SuggestedLinksRegistry* SuggestedLinksRegistryFactory::GetForProfile( | 15 SuggestedLinksRegistry* SuggestedLinksRegistryFactory::GetForProfile( |
15 Profile* profile) { | 16 Profile* profile) { |
16 return static_cast<SuggestedLinksRegistry*>( | 17 return static_cast<SuggestedLinksRegistry*>( |
17 GetInstance()->GetServiceForProfile(profile, true)); | 18 GetInstance()->GetServiceForProfile(profile, true)); |
18 } | 19 } |
(...skipping 10 matching lines...) Expand all Loading... |
29 SuggestedLinksRegistryFactory::SuggestedLinksRegistryFactory() | 30 SuggestedLinksRegistryFactory::SuggestedLinksRegistryFactory() |
30 : ProfileKeyedServiceFactory("SuggestedLinksRegistry", | 31 : ProfileKeyedServiceFactory("SuggestedLinksRegistry", |
31 ProfileDependencyManager::GetInstance()) { | 32 ProfileDependencyManager::GetInstance()) { |
32 DependsOn(ExtensionSystemFactory::GetInstance()); | 33 DependsOn(ExtensionSystemFactory::GetInstance()); |
33 } | 34 } |
34 | 35 |
35 SuggestedLinksRegistryFactory::~SuggestedLinksRegistryFactory() { | 36 SuggestedLinksRegistryFactory::~SuggestedLinksRegistryFactory() { |
36 } | 37 } |
37 | 38 |
38 ProfileKeyedService* SuggestedLinksRegistryFactory::BuildServiceInstanceFor( | 39 ProfileKeyedService* SuggestedLinksRegistryFactory::BuildServiceInstanceFor( |
39 Profile* profile) const { | 40 content::BrowserContext* profile) const { |
40 return new SuggestedLinksRegistry(); | 41 return new SuggestedLinksRegistry(); |
41 } | 42 } |
42 | 43 |
43 bool SuggestedLinksRegistryFactory::ServiceRedirectedInIncognito() const { | 44 bool SuggestedLinksRegistryFactory::ServiceRedirectedInIncognito() const { |
44 return true; | 45 return true; |
45 } | 46 } |
46 | 47 |
47 } // namespace extensions | 48 } // namespace extensions |
OLD | NEW |