Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(459)

Side by Side Diff: chrome/browser/ui/webui/chrome_url_data_manager_factory.cc

Issue 10908088: Cleanup: Constify some ProfileKeyedBaseFactory methods and all overrides. Remove ProfileKeyedBaseFa… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase, remove a few more lines of code Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chrome_url_data_manager_factory.h ('k') | chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698