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

Unified Diff: chrome/browser/history/top_sites_impl_unittest.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
« no previous file with comments | « chrome/browser/history/top_sites_impl.h ('k') | chrome/browser/history/typed_url_syncable_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/top_sites_impl_unittest.cc
diff --git a/chrome/browser/history/top_sites_impl_unittest.cc b/chrome/browser/history/top_sites_impl_unittest.cc
index 665310b4599d0347a48ad1fb231cc60b6adac9fe..59e0c6ac2267be1c7aa7b5ab8ab8d4ad1385c8be 100644
--- a/chrome/browser/history/top_sites_impl_unittest.cc
+++ b/chrome/browser/history/top_sites_impl_unittest.cc
@@ -34,8 +34,8 @@ class TestTopSitesObserver : public history::TopSitesObserver {
explicit TestTopSitesObserver(Profile* profile, history::TopSites* top_sites);
virtual ~TestTopSitesObserver();
// 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:
Profile* profile_;
@@ -77,11 +77,11 @@ class WaitForHistoryTask : public HistoryDBTask {
WaitForHistoryTask() {}
virtual bool RunOnDBThread(HistoryBackend* backend,
- HistoryDatabase* db) OVERRIDE {
+ HistoryDatabase* db) override {
return true;
}
- virtual void DoneRunOnMainThread() OVERRIDE {
+ virtual void DoneRunOnMainThread() override {
base::MessageLoop::current()->Quit();
}
« no previous file with comments | « chrome/browser/history/top_sites_impl.h ('k') | chrome/browser/history/typed_url_syncable_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698