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

Unified Diff: chrome/browser/sync_file_system/local/syncable_file_operation_runner.h

Issue 666143002: Standardize usage of virtual/override/final in chrome/browser/sync_file_system/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_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

Powered by Google App Engine
This is Rietveld 408576698