| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/extensions/api/discovery/extension_suggested_links_mana
ger_factory.h" |
| 6 |
| 7 #include "chrome/browser/extensions/api/discovery/extension_suggested_links_mana
ger.h" |
| 8 #include "chrome/browser/extensions/extension_system_factory.h" |
| 9 #include "chrome/browser/profiles/profile_dependency_manager.h" |
| 10 |
| 11 // static |
| 12 ExtensionSuggestedLinksManager* |
| 13 ExtensionSuggestedLinksManagerFactory::GetForProfile(Profile* profile) { |
| 14 return static_cast<ExtensionSuggestedLinksManager*>( |
| 15 GetInstance()->GetServiceForProfile(profile, true)); |
| 16 } |
| 17 |
| 18 // static |
| 19 ExtensionSuggestedLinksManagerFactory* |
| 20 ExtensionSuggestedLinksManagerFactory::GetInstance() { |
| 21 return Singleton<ExtensionSuggestedLinksManagerFactory>::get(); |
| 22 } |
| 23 |
| 24 bool ExtensionSuggestedLinksManagerFactory::ServiceIsCreatedWithProfile() { |
| 25 return true; |
| 26 } |
| 27 |
| 28 ExtensionSuggestedLinksManagerFactory::ExtensionSuggestedLinksManagerFactory() |
| 29 : ProfileKeyedServiceFactory("ExtensionSuggestedLinksManager", |
| 30 ProfileDependencyManager::GetInstance()) { |
| 31 DependsOn(ExtensionSystemFactory::GetInstance()); |
| 32 } |
| 33 |
| 34 ExtensionSuggestedLinksManagerFactory:: |
| 35 ~ExtensionSuggestedLinksManagerFactory() { |
| 36 } |
| 37 |
| 38 ProfileKeyedService* ExtensionSuggestedLinksManagerFactory:: |
| 39 BuildServiceInstanceFor(Profile* profile) const { |
| 40 return new ExtensionSuggestedLinksManager(); |
| 41 } |
| 42 |
| 43 bool ExtensionSuggestedLinksManagerFactory::ServiceRedirectedInIncognito() { |
| 44 return true; |
| 45 } |
| OLD | NEW |