Chromium Code Reviews

Unified Diff: chrome/browser/history/android/favicon_sql_handler.h

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.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/history/android/favicon_sql_handler.h
diff --git a/chrome/browser/history/android/favicon_sql_handler.h b/chrome/browser/history/android/favicon_sql_handler.h
index d4b2d3ffe9a6f34c590afe90ab6a848709c65e3b..19ff9e59463b395a9aa06ff909a03352178a9817 100644
--- a/chrome/browser/history/android/favicon_sql_handler.h
+++ b/chrome/browser/history/android/favicon_sql_handler.h
@@ -19,9 +19,9 @@ class FaviconSQLHandler : public SQLHandler {
// SQLHandler overrides:
virtual bool Update(const HistoryAndBookmarkRow& row,
- const TableIDRows& ids_set) OVERRIDE;
- virtual bool Delete(const TableIDRows& ids_set) OVERRIDE;
- virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE;
+ const TableIDRows& ids_set) override;
+ virtual bool Delete(const TableIDRows& ids_set) override;
+ virtual bool Insert(HistoryAndBookmarkRow* row) override;
private:
// Deletes the given favicons if they are not used by any pages. Returns

Powered by Google App Engine