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 d0b02a23f78ce0e8ef9c78a3566ea36f35e183f5..96339696039078aba5af584c09e55341c9f572d6 100644 |
--- a/chrome/browser/predictors/resource_prefetch_predictor.cc |
+++ b/chrome/browser/predictors/resource_prefetch_predictor.cc |
@@ -118,14 +118,14 @@ class GetUrlVisitCountTask : public history::HistoryDBTask { |
} |
virtual bool RunOnDBThread(history::HistoryBackend* backend, |
- history::HistoryDatabase* db) OVERRIDE { |
+ history::HistoryDatabase* db) override { |
history::URLRow url_row; |
if (db->GetRowForURL(navigation_id_.main_frame_url, &url_row)) |
visit_count_ = url_row.visit_count(); |
return true; |
} |
- virtual void DoneRunOnMainThread() OVERRIDE { |
+ virtual void DoneRunOnMainThread() override { |
callback_.Run(visit_count_, navigation_id_, *requests_); |
} |