| Index: chrome/browser/predictors/resource_prefetch_predictor_tables.cc
|
| diff --git a/chrome/browser/predictors/resource_prefetch_predictor_tables.cc b/chrome/browser/predictors/resource_prefetch_predictor_tables.cc
|
| index 89ebd7dce7f5aa989bf5af19651660c736c7d43a..c8e6877aa02bb035bfa7a789f407d5e111282245 100644
|
| --- a/chrome/browser/predictors/resource_prefetch_predictor_tables.cc
|
| +++ b/chrome/browser/predictors/resource_prefetch_predictor_tables.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/predictors/resource_prefetch_predictor_tables.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <algorithm>
|
| #include <utility>
|
|
|
| @@ -296,7 +298,7 @@ void ResourcePrefetchPredictorTables::GetAllDataHelper(
|
|
|
| PrefetchDataMap::iterator it = data_map->find(primary_key);
|
| if (it != data_map->end()) {
|
| - int64 last_visit = metadata_reader.ColumnInt64(1);
|
| + int64_t last_visit = metadata_reader.ColumnInt64(1);
|
| it->second.last_visit = base::Time::FromInternalValue(last_visit);
|
| } else {
|
| to_delete->push_back(primary_key);
|
|
|