| Index: chrome/browser/predictors/autocomplete_action_predictor_factory.cc
|
| diff --git a/chrome/browser/predictors/autocomplete_action_predictor_factory.cc b/chrome/browser/predictors/autocomplete_action_predictor_factory.cc
|
| index 9d492280bda1beee97f0b65332c6f45aada0a4b9..b1ff1c28aa784a99867cb9cc7312838ccdee0815 100644
|
| --- a/chrome/browser/predictors/autocomplete_action_predictor_factory.cc
|
| +++ b/chrome/browser/predictors/autocomplete_action_predictor_factory.cc
|
| @@ -5,9 +5,12 @@
|
| #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
|
|
|
| #include "chrome/browser/predictors/autocomplete_action_predictor.h"
|
| +#include "chrome/browser/predictors/predictor_database_factory.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/profiles/profile_dependency_manager.h"
|
|
|
| +namespace predictors {
|
| +
|
| // static
|
| AutocompleteActionPredictor* AutocompleteActionPredictorFactory::GetForProfile(
|
| Profile* profile) {
|
| @@ -26,6 +29,7 @@ AutocompleteActionPredictorFactory::AutocompleteActionPredictorFactory()
|
| ProfileDependencyManager::GetInstance()) {
|
| // TODO(erg): When HistoryService is PKSFized, uncomment this.
|
| // DependsOn(HistoryServiceFactory::GetInstance());
|
| + DependsOn(PredictorDatabaseFactory::GetInstance());
|
| }
|
|
|
| AutocompleteActionPredictorFactory::~AutocompleteActionPredictorFactory() {}
|
| @@ -35,3 +39,5 @@ ProfileKeyedService*
|
| Profile* profile) const {
|
| return new AutocompleteActionPredictor(profile);
|
| }
|
| +
|
| +} // namespace predictors
|
|
|