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

Unified Diff: chrome/browser/sync_file_system/local/canned_syncable_file_system.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/canned_syncable_file_system.h
diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
index cd7d478136d98b7578b2f86a6d6b455aa35f4ecb..13ebb830d506a0030fc03a452194254002c660ef 100644
--- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
+++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
@@ -75,7 +75,7 @@ class CannedSyncableFileSystem
leveldb::Env* env_override,
const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner,
const scoped_refptr<base::SingleThreadTaskRunner>& file_task_runner);
- virtual ~CannedSyncableFileSystem();
+ ~CannedSyncableFileSystem() override;
// SetUp must be called before using this instance.
void SetUp(QuotaMode quota_mode);
@@ -159,8 +159,8 @@ class CannedSyncableFileSystem
storage::FileSystemOperationRunner* operation_runner();
// 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;
// Operation methods body.
// They can be also called directly if the caller is already on IO thread.

Powered by Google App Engine
This is Rietveld 408576698