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

Unified Diff: chrome/browser/sync/backup_rollback_controller_unittest.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/backup_rollback_controller_unittest.cc
diff --git a/chrome/browser/sync/backup_rollback_controller_unittest.cc b/chrome/browser/sync/backup_rollback_controller_unittest.cc
index 2f378ab95447de291cc7c3019088eaeb79e88bd4..8252c36488e543ab71e75364a92f9c1bd6a17418 100644
--- a/chrome/browser/sync/backup_rollback_controller_unittest.cc
+++ b/chrome/browser/sync/backup_rollback_controller_unittest.cc
@@ -31,11 +31,11 @@ class FakeSyncPrefs : public sync_driver::SyncPrefs {
public:
FakeSyncPrefs() : rollback_tries_left_(0) {}
- virtual int GetRemainingRollbackTries() const OVERRIDE {
+ virtual int GetRemainingRollbackTries() const override {
return rollback_tries_left_;
}
- virtual void SetRemainingRollbackTries(int v) OVERRIDE {
+ virtual void SetRemainingRollbackTries(int v) override {
rollback_tries_left_ = v;
}
@@ -53,7 +53,7 @@ class BackupRollbackControllerTest : public testing::Test {
}
protected:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
backup_started_ = false;
rollback_started_ = false;
« no previous file with comments | « chrome/browser/sync/backend_unrecoverable_error_handler.h ('k') | chrome/browser/sync/glue/autofill_data_type_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698