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

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

Issue 12049052: Move core url data manager classes to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 7 years, 11 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
(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() const {
38 return true;
39 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chrome_url_data_manager_factory.h ('k') | chrome/browser/ui/webui/chrome_web_ui_data_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698