diff options
Diffstat (limited to 'chrome/browser/predictors/predictor_database.h')
-rw-r--r-- | chrome/browser/predictors/predictor_database.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/predictors/predictor_database.h b/chrome/browser/predictors/predictor_database.h index 73c159a..624b00b 100644 --- a/chrome/browser/predictors/predictor_database.h +++ b/chrome/browser/predictors/predictor_database.h @@ -6,7 +6,7 @@ #define CHROME_BROWSER_PREDICTORS_PREDICTOR_DATABASE_H_ #include "base/memory/ref_counted.h" -#include "components/browser_context_keyed_service/browser_context_keyed_service.h" +#include "components/keyed_service/core/keyed_service.h" class Profile; @@ -20,7 +20,7 @@ class AutocompleteActionPredictorTable; class LoggedInPredictorTable; class PredictorDatabaseInternal; -class PredictorDatabase : public BrowserContextKeyedService { +class PredictorDatabase : public KeyedService { public: explicit PredictorDatabase(Profile* profile); virtual ~PredictorDatabase(); @@ -32,7 +32,7 @@ class PredictorDatabase : public BrowserContextKeyedService { sql::Connection* GetDatabase(); private: - // BrowserContextKeyedService + // KeyedService virtual void Shutdown() OVERRIDE; scoped_refptr<PredictorDatabaseInternal> db_; |