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

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

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/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 1698ea2fcea1f759ecb2713cec58f412f83cd13f..daf22350e4067692381632a08bcc94d703a9a7b7 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
@@ -51,19 +51,19 @@ class LocalFileChangeTracker : public storage::FileUpdateObserver,
virtual ~LocalFileChangeTracker();
// FileUpdateObserver overrides.
- virtual void OnStartUpdate(const storage::FileSystemURL& url) OVERRIDE;
+ 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;
+ int64 delta) override {}
+ virtual void OnEndUpdate(const storage::FileSystemURL& url) override;
// FileChangeObserver overrides.
- virtual void OnCreateFile(const storage::FileSystemURL& url) OVERRIDE;
+ 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;
+ 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;
// Retrieves an array of |url| which have more than one pending changes.
// If |max_urls| is non-zero (recommended in production code) this

Powered by Google App Engine
This is Rietveld 408576698