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

Unified Diff: chrome/browser/sync_file_system/drive_backend/drive_backend_sync_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_file_system/drive_backend/drive_backend_sync_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_backend_sync_unittest.cc b/chrome/browser/sync_file_system/drive_backend/drive_backend_sync_unittest.cc
index 3f79a1f33eb0a7efc687b59e8fc71619341def35..615f78877eb2f531b255925f752b964d958e9723 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_backend_sync_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/drive_backend_sync_unittest.cc
@@ -77,7 +77,7 @@ class DriveBackendSyncTest : public testing::Test,
pending_local_changes_(0) {}
virtual ~DriveBackendSyncTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ASSERT_TRUE(base_dir_.CreateUniqueTempDir());
in_memory_env_.reset(leveldb::NewMemEnv(leveldb::Env::Default()));
@@ -137,7 +137,7 @@ class DriveBackendSyncTest : public testing::Test,
remote_sync_service_->SetRemoteChangeProcessor(local_sync_service_.get());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
typedef std::map<std::string, CannedSyncableFileSystem*>::iterator iterator;
for (iterator itr = file_systems_.begin();
itr != file_systems_.end(); ++itr) {
@@ -156,11 +156,11 @@ class DriveBackendSyncTest : public testing::Test,
RevokeSyncableFileSystem();
}
- virtual void OnRemoteChangeQueueUpdated(int64 pending_changes_hint) OVERRIDE {
+ virtual void OnRemoteChangeQueueUpdated(int64 pending_changes_hint) override {
pending_remote_changes_ = pending_changes_hint;
}
- virtual void OnLocalChangeAvailable(int64 pending_changes_hint) OVERRIDE {
+ virtual void OnLocalChangeAvailable(int64 pending_changes_hint) override {
pending_local_changes_ = pending_changes_hint;
}

Powered by Google App Engine
This is Rietveld 408576698