Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2823)

Unified Diff: chrome/browser/history/expire_history_backend.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/expire_history_backend.cc
diff --git a/chrome/browser/history/expire_history_backend.cc b/chrome/browser/history/expire_history_backend.cc
index 7c6de26fd1ad1202aae4c6440061edffe73bacd7..e874d19b831782fcd17be417836f736266ccefab 100644
--- a/chrome/browser/history/expire_history_backend.cc
+++ b/chrome/browser/history/expire_history_backend.cc
@@ -47,7 +47,7 @@ class AllVisitsReader : public ExpiringVisitsReader {
virtual bool Read(base::Time end_time,
HistoryDatabase* db,
VisitVector* visits,
- int max_visits) const OVERRIDE {
+ int max_visits) const override {
DCHECK(db) << "must have a database to operate upon";
DCHECK(visits) << "visit vector has to exist in order to populate it";
@@ -69,7 +69,7 @@ class AutoSubframeVisitsReader : public ExpiringVisitsReader {
virtual bool Read(base::Time end_time,
HistoryDatabase* db,
VisitVector* visits,
- int max_visits) const OVERRIDE {
+ int max_visits) const override {
DCHECK(db) << "must have a database to operate upon";
DCHECK(visits) << "visit vector has to exist in order to populate it";
« no previous file with comments | « chrome/browser/history/delete_directive_handler.cc ('k') | chrome/browser/history/expire_history_backend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698