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

Unified Diff: chrome/browser/history/chrome_history_client.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/chrome_history_client.h
diff --git a/chrome/browser/history/chrome_history_client.h b/chrome/browser/history/chrome_history_client.h
index 92f918609c7c6004b453b46268db77f605171449..bad2f0b6741c262916245aa8b9f55684e2bb90b9 100644
--- a/chrome/browser/history/chrome_history_client.h
+++ b/chrome/browser/history/chrome_history_client.h
@@ -27,19 +27,19 @@ class ChromeHistoryClient : public history::HistoryClient,
virtual ~ChromeHistoryClient();
// history::HistoryClient:
- virtual void BlockUntilBookmarksLoaded() OVERRIDE;
- virtual bool IsBookmarked(const GURL& url) OVERRIDE;
+ virtual void BlockUntilBookmarksLoaded() override;
+ virtual bool IsBookmarked(const GURL& url) override;
virtual void GetBookmarks(
- std::vector<history::URLAndTitle>* bookmarks) OVERRIDE;
- virtual void NotifyProfileError(sql::InitStatus init_status) OVERRIDE;
- virtual bool ShouldReportDatabaseError() OVERRIDE;
+ std::vector<history::URLAndTitle>* bookmarks) override;
+ virtual void NotifyProfileError(sql::InitStatus init_status) override;
+ virtual bool ShouldReportDatabaseError() override;
// KeyedService:
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// TopSitesObserver:
- virtual void TopSitesLoaded(history::TopSites* top_sites) OVERRIDE;
- virtual void TopSitesChanged(history::TopSites* top_sites) OVERRIDE;
+ virtual void TopSitesLoaded(history::TopSites* top_sites) override;
+ virtual void TopSitesChanged(history::TopSites* top_sites) override;
private:
// The BookmarkModel, this should outlive ChromeHistoryClient.
« no previous file with comments | « chrome/browser/history/android/visit_sql_handler.h ('k') | chrome/browser/history/chrome_history_client_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698