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

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_task_manager_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/sync_task_manager_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_task_manager_unittest.cc b/chrome/browser/sync_file_system/drive_backend/sync_task_manager_unittest.cc
index 2a0401a4cabaafe9884c9eccb315c884d7d1e0f7..c62c12aa973d4cafa3b51f796951e50ba4ae8987 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_task_manager_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/sync_task_manager_unittest.cc
@@ -70,16 +70,16 @@ class TaskManagerClient
virtual ~TaskManagerClient() {}
// DriveFileSyncManager::Client overrides.
- virtual void MaybeScheduleNextTask() OVERRIDE {
+ virtual void MaybeScheduleNextTask() override {
++maybe_schedule_next_task_count_;
}
virtual void NotifyLastOperationStatus(
SyncStatusCode last_operation_status,
- bool last_operation_used_network) OVERRIDE {
+ bool last_operation_used_network) override {
last_operation_status_ = last_operation_status;
}
- virtual void RecordTaskLog(scoped_ptr<TaskLogger::TaskLog>) OVERRIDE {}
+ virtual void RecordTaskLog(scoped_ptr<TaskLogger::TaskLog>) override {}
void ScheduleTask(SyncStatusCode status_to_return,
const SyncStatusCallback& callback) {
@@ -143,7 +143,7 @@ class MultihopSyncTask : public ExclusiveTask {
virtual ~MultihopSyncTask() {}
- virtual void RunExclusive(const SyncStatusCallback& callback) OVERRIDE {
+ virtual void RunExclusive(const SyncStatusCallback& callback) override {
DCHECK(!*task_started_);
*task_started_ = true;
base::MessageLoop::current()->PostTask(
@@ -191,7 +191,7 @@ class BackgroundTask : public SyncTask {
virtual ~BackgroundTask() {
}
- virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE {
+ virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) override {
scoped_ptr<TaskBlocker> task_blocker(new TaskBlocker);
task_blocker->app_id = app_id_;
task_blocker->paths.push_back(path_);
@@ -248,7 +248,7 @@ class BlockerUpdateTestHelper : public SyncTask {
virtual ~BlockerUpdateTestHelper() {
}
- virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE {
+ virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) override {
UpdateBlocker(token.Pass());
}

Powered by Google App Engine
This is Rietveld 408576698