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

Unified Diff: chrome/browser/ui/sync/profile_signin_confirmation_helper.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/sync/profile_signin_confirmation_helper.cc
diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
index 2852608ae641730cd5ead3db649f0d9ce718d42e..5d6debdb6ad1dd294aabda9b48ec83517bbc2c44 100644
--- a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
+++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
@@ -43,7 +43,7 @@ class HasTypedURLsTask : public history::HistoryDBTask {
}
virtual bool RunOnDBThread(history::HistoryBackend* backend,
- history::HistoryDatabase* db) OVERRIDE {
+ history::HistoryDatabase* db) override {
history::URLRows rows;
backend->GetAllTypedURLs(&rows);
if (!rows.empty()) {
@@ -54,7 +54,7 @@ class HasTypedURLsTask : public history::HistoryDBTask {
return true;
}
- virtual void DoneRunOnMainThread() OVERRIDE {
+ virtual void DoneRunOnMainThread() override {
cb_.Run(has_typed_urls_);
}

Powered by Google App Engine
This is Rietveld 408576698