Index: chrome/browser/sync_file_system/local/syncable_file_operation_runner.h |
diff --git a/chrome/browser/sync_file_system/local/syncable_file_operation_runner.h b/chrome/browser/sync_file_system/local/syncable_file_operation_runner.h |
index 8d18818605a1238e1924ddcf84dd57e0e12a180c..0005ab2d4ad17a979faf74a9a744626673839486 100644 |
--- a/chrome/browser/sync_file_system/local/syncable_file_operation_runner.h |
+++ b/chrome/browser/sync_file_system/local/syncable_file_operation_runner.h |
@@ -54,11 +54,11 @@ class SyncableFileOperationRunner |
SyncableFileOperationRunner(int64 max_inflight_tasks, |
LocalFileSyncStatus* sync_status); |
- virtual ~SyncableFileOperationRunner(); |
+ ~SyncableFileOperationRunner() override; |
// LocalFileSyncStatus::Observer overrides. |
- virtual void OnSyncEnabled(const storage::FileSystemURL& url) override; |
- virtual void OnWriteEnabled(const storage::FileSystemURL& url) override; |
+ void OnSyncEnabled(const storage::FileSystemURL& url) override; |
+ void OnWriteEnabled(const storage::FileSystemURL& url) override; |
// Runs the given |task| if no sync operation is running on any of |
// its target_paths(). This also runs pending tasks that have become |