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

Unified Diff: chrome/browser/sync_file_system/local/syncable_file_system_operation.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/local/syncable_file_system_operation.cc
diff --git a/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc b/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc
index 74db10349918fb711160e7caa7730694133a792b..91989124b284a8e9df3e2668dbab0573fae30b38 100644
--- a/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc
+++ b/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc
@@ -44,7 +44,7 @@ class SyncableFileSystemOperation::QueueableTask
DCHECK(!operation_);
}
- virtual void Run() OVERRIDE {
+ virtual void Run() override {
if (!operation_)
return;
DCHECK(!task_.is_null());
@@ -52,7 +52,7 @@ class SyncableFileSystemOperation::QueueableTask
operation_.reset();
}
- virtual void Cancel() OVERRIDE {
+ virtual void Cancel() override {
DCHECK(!task_.is_null());
if (operation_)
operation_->OnCancelled();
@@ -60,7 +60,7 @@ class SyncableFileSystemOperation::QueueableTask
operation_.reset();
}
- virtual const std::vector<FileSystemURL>& target_paths() const OVERRIDE {
+ virtual const std::vector<FileSystemURL>& target_paths() const override {
return target_paths_;
}

Powered by Google App Engine
This is Rietveld 408576698