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