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/ui/webui/chrome_url_data_manager_factory.h" |
| 6 |
| 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/browser/profiles/profile_dependency_manager.h" |
| 9 #include "chrome/browser/profiles/profile_keyed_service.h" |
| 10 |
| 11 // static |
| 12 ChromeURLDataManager* ChromeURLDataManagerFactory::GetForProfile( |
| 13 Profile* profile) { |
| 14 return static_cast<ChromeURLDataManager*>( |
| 15 GetInstance()->GetServiceForProfile(profile, true)); |
| 16 } |
| 17 |
| 18 // static |
| 19 ChromeURLDataManagerFactory* ChromeURLDataManagerFactory::GetInstance() { |
| 20 return Singleton<ChromeURLDataManagerFactory>::get(); |
| 21 } |
| 22 |
| 23 ChromeURLDataManagerFactory::ChromeURLDataManagerFactory() |
| 24 : ProfileKeyedServiceFactory("ChromeURLDataManager", |
| 25 ProfileDependencyManager::GetInstance()){ |
| 26 } |
| 27 |
| 28 ChromeURLDataManagerFactory::~ChromeURLDataManagerFactory() { |
| 29 } |
| 30 |
| 31 ProfileKeyedService* ChromeURLDataManagerFactory::BuildServiceInstanceFor( |
| 32 Profile* profile) const { |
| 33 return new ChromeURLDataManager( |
| 34 profile->GetChromeURLDataManagerBackendGetter()); |
| 35 } |
| 36 |
| 37 bool ChromeURLDataManagerFactory::ServiceHasOwnInstanceInIncognito() { |
| 38 return true; |
| 39 } |
OLD | NEW |