| Index: chrome/browser/predictors/resource_prefetch_predictor.cc
|
| diff --git a/chrome/browser/predictors/resource_prefetch_predictor.cc b/chrome/browser/predictors/resource_prefetch_predictor.cc
|
| index 4925081e4be17605f25048f74baa74cf885027d6..b3d4d871b62f30cb37c435e103c103285fd2777d 100644
|
| --- a/chrome/browser/predictors/resource_prefetch_predictor.cc
|
| +++ b/chrome/browser/predictors/resource_prefetch_predictor.cc
|
| @@ -18,8 +18,8 @@
|
| #include "chrome/browser/history/history_notifications.h"
|
| #include "chrome/browser/history/history_service.h"
|
| #include "chrome/browser/history/history_service_factory.h"
|
| -#include "chrome/browser/predictors/predictor_database.h"
|
| #include "chrome/browser/predictors/predictor_database_factory.h"
|
| +#include "chrome/browser/predictors/predictor_database_service.h"
|
| #include "chrome/browser/predictors/resource_prefetcher_manager.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| @@ -292,7 +292,7 @@ ResourcePrefetchPredictor::ResourcePrefetchPredictor(
|
| config_(config),
|
| initialization_state_(NOT_INITIALIZED),
|
| tables_(PredictorDatabaseFactory::GetForProfile(
|
| - profile)->resource_prefetch_tables()),
|
| + profile)->GetDatabase()->resource_prefetch_tables()),
|
| results_map_deleter_(&results_map_) {
|
| CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
|
|