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

Side by Side Diff: chrome/browser/history/chrome_history_client_factory.cc

Issue 305443004: Introduce HistoryClient interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@371825
Patch Set: Reupload with --no-find-copies Created 6 years, 6 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
OLDNEW
(Empty)
1 // Copyright 2014 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/history/chrome_history_client_factory.h"
6
7 #include "chrome/browser/history/chrome_history_client.h"
8 #include "chrome/browser/profiles/incognito_helpers.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
11
12 // static
13 ChromeHistoryClient* ChromeHistoryClientFactory::GetForProfile(
14 Profile* profile) {
15 return static_cast<ChromeHistoryClient*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
17 }
18
19 // static
20 ChromeHistoryClientFactory* ChromeHistoryClientFactory::GetInstance() {
21 return Singleton<ChromeHistoryClientFactory>::get();
22 }
23
24 ChromeHistoryClientFactory::ChromeHistoryClientFactory()
25 : BrowserContextKeyedServiceFactory(
26 "ChromeHistoryClient",
27 BrowserContextDependencyManager::GetInstance()) {
28 }
29
30 ChromeHistoryClientFactory::~ChromeHistoryClientFactory() {
31 }
32
33 KeyedService* ChromeHistoryClientFactory::BuildServiceInstanceFor(
34 content::BrowserContext* context) const {
35 return new ChromeHistoryClient();
36 }
37
38 content::BrowserContext* ChromeHistoryClientFactory::GetBrowserContextToUse(
39 content::BrowserContext* context) const {
40 return chrome::GetBrowserContextRedirectedInIncognito(context);
41 }
42
43 bool ChromeHistoryClientFactory::ServiceIsNULLWhileTesting() const {
44 return true;
45 }
OLDNEW
« no previous file with comments | « chrome/browser/history/chrome_history_client_factory.h ('k') | chrome/browser/history/history_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698