| 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_;
 | 
|    }
 | 
|  
 | 
| 
 |