Index: chrome/browser/sync_file_system/local/local_file_change_tracker.h |
diff --git a/chrome/browser/sync_file_system/local/local_file_change_tracker.h b/chrome/browser/sync_file_system/local/local_file_change_tracker.h |
index daf22350e4067692381632a08bcc94d703a9a7b7..d38c8fc4ca52061f08a0c501b99485e38a3b58dd 100644 |
--- a/chrome/browser/sync_file_system/local/local_file_change_tracker.h |
+++ b/chrome/browser/sync_file_system/local/local_file_change_tracker.h |
@@ -48,22 +48,21 @@ class LocalFileChangeTracker : public storage::FileUpdateObserver, |
LocalFileChangeTracker(const base::FilePath& base_path, |
leveldb::Env* env_override, |
base::SequencedTaskRunner* file_task_runner); |
- virtual ~LocalFileChangeTracker(); |
+ ~LocalFileChangeTracker() override; |
// FileUpdateObserver overrides. |
- virtual void OnStartUpdate(const storage::FileSystemURL& url) override; |
- virtual void OnUpdate(const storage::FileSystemURL& url, |
- int64 delta) override {} |
- virtual void OnEndUpdate(const storage::FileSystemURL& url) override; |
+ void OnStartUpdate(const storage::FileSystemURL& url) override; |
+ void OnUpdate(const storage::FileSystemURL& url, int64 delta) override {} |
+ void OnEndUpdate(const storage::FileSystemURL& url) override; |
// FileChangeObserver overrides. |
- virtual void OnCreateFile(const storage::FileSystemURL& url) override; |
- virtual void OnCreateFileFrom(const storage::FileSystemURL& url, |
- const storage::FileSystemURL& src) override; |
- virtual void OnRemoveFile(const storage::FileSystemURL& url) override; |
- virtual void OnModifyFile(const storage::FileSystemURL& url) override; |
- virtual void OnCreateDirectory(const storage::FileSystemURL& url) override; |
- virtual void OnRemoveDirectory(const storage::FileSystemURL& url) override; |
+ void OnCreateFile(const storage::FileSystemURL& url) override; |
+ void OnCreateFileFrom(const storage::FileSystemURL& url, |
+ const storage::FileSystemURL& src) override; |
+ void OnRemoveFile(const storage::FileSystemURL& url) override; |
+ void OnModifyFile(const storage::FileSystemURL& url) override; |
+ void OnCreateDirectory(const storage::FileSystemURL& url) override; |
+ void OnRemoveDirectory(const storage::FileSystemURL& url) override; |
// Retrieves an array of |url| which have more than one pending changes. |
// If |max_urls| is non-zero (recommended in production code) this |