OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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/autocomplete/network_action_predictor_factory.h" | |
6 | |
7 #include "chrome/browser/autocomplete/network_action_predictor.h" | |
8 #include "chrome/browser/profiles/profile.h" | |
9 #include "chrome/browser/profiles/profile_dependency_manager.h" | |
10 | |
11 // static | |
12 NetworkActionPredictor* NetworkActionPredictorFactory::GetForProfile( | |
13 Profile* profile) { | |
14 return static_cast<NetworkActionPredictor*>( | |
15 GetInstance()->GetServiceForProfile(profile, true)); | |
16 } | |
17 | |
18 // static | |
19 NetworkActionPredictorFactory* NetworkActionPredictorFactory::GetInstance() { | |
20 return Singleton<NetworkActionPredictorFactory>::get(); | |
21 } | |
22 | |
23 NetworkActionPredictorFactory::NetworkActionPredictorFactory() | |
24 : ProfileKeyedServiceFactory(ProfileDependencyManager::GetInstance()) { | |
25 // TODO(erg): When HistoryService is PKSFized, uncomment this. | |
26 // DependsOn(HistoryServiceFactory::GetInstance()); | |
27 } | |
28 | |
29 NetworkActionPredictorFactory::~NetworkActionPredictorFactory() {} | |
30 | |
31 ProfileKeyedService* NetworkActionPredictorFactory::BuildServiceInstanceFor( | |
32 Profile* profile) const { | |
dominich
2011/12/12 16:58:39
This probably shouldn't be created for incognito p
Elliot Glaysher
2011/12/12 18:16:15
It isn't. ServiceRedirectedInIncognito() and Servi
| |
33 return new NetworkActionPredictor(profile); | |
34 } | |
OLD | NEW |