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

Unified Diff: chrome/browser/sync/test/integration/single_client_backup_rollback_test.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/sync/test/integration/single_client_backup_rollback_test.cc
diff --git a/chrome/browser/sync/test/integration/single_client_backup_rollback_test.cc b/chrome/browser/sync/test/integration/single_client_backup_rollback_test.cc
index 11b89c024b9e4821c08057021e5edf7f1a795700..874e3f12e232afdb5336938d62eb3044580f2c61 100644
--- a/chrome/browser/sync/test/integration/single_client_backup_rollback_test.cc
+++ b/chrome/browser/sync/test/integration/single_client_backup_rollback_test.cc
@@ -82,7 +82,7 @@ class SyncBackendStoppedChecker : public ProfileSyncServiceBase::Observer {
timeout_(TestTimeouts::action_max_timeout()),
done_(false) {}
- virtual void OnStateChanged() OVERRIDE {
+ virtual void OnStateChanged() override {
if (ProfileSyncService::IDLE == pss_->backend_mode()) {
done_ = true;
run_loop_.Quit();
@@ -121,7 +121,7 @@ class SyncRollbackChecker : public ProfileSyncServiceBase::Observer,
clear_done_(false) {}
// ProfileSyncServiceBase::Observer implementation.
- virtual void OnStateChanged() OVERRIDE {
+ virtual void OnStateChanged() override {
if (ProfileSyncService::ROLLBACK == pss_->backend_mode()) {
rollback_started_ = true;
if (clear_done_)
@@ -130,7 +130,7 @@ class SyncRollbackChecker : public ProfileSyncServiceBase::Observer,
}
// BrowsingDataRemoverObserver::Observer implementation.
- virtual void OnBrowsingDataRemoverDone() OVERRIDE {
+ virtual void OnBrowsingDataRemoverDone() override {
clear_done_ = true;
if (rollback_started_) {
run_loop_.Quit();

Powered by Google App Engine
This is Rietveld 408576698