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

Unified Diff: chrome/browser/sync_file_system/local/syncable_file_system_operation.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/syncable_file_system_operation.h
diff --git a/chrome/browser/sync_file_system/local/syncable_file_system_operation.h b/chrome/browser/sync_file_system/local/syncable_file_system_operation.h
index 8821f947184342d496354bf968773e607afab683..069e0b511c4dbd1153a9a16d10d0b23d8d985e92 100644
--- a/chrome/browser/sync_file_system/local/syncable_file_system_operation.h
+++ b/chrome/browser/sync_file_system/local/syncable_file_system_operation.h
@@ -34,68 +34,68 @@ class SyncableFileSystemOperation
// storage::FileSystemOperation overrides.
virtual void CreateFile(const storage::FileSystemURL& url,
bool exclusive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CreateDirectory(const storage::FileSystemURL& url,
bool exclusive,
bool recursive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void Copy(const storage::FileSystemURL& src_url,
const storage::FileSystemURL& dest_url,
CopyOrMoveOption option,
const CopyProgressCallback& progress_callback,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void Move(const storage::FileSystemURL& src_url,
const storage::FileSystemURL& dest_url,
CopyOrMoveOption option,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void DirectoryExists(const storage::FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void FileExists(const storage::FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void GetMetadata(const storage::FileSystemURL& url,
- const GetMetadataCallback& callback) OVERRIDE;
+ const GetMetadataCallback& callback) override;
virtual void ReadDirectory(const storage::FileSystemURL& url,
- const ReadDirectoryCallback& callback) OVERRIDE;
+ const ReadDirectoryCallback& callback) override;
virtual void Remove(const storage::FileSystemURL& url,
bool recursive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void Write(const storage::FileSystemURL& url,
scoped_ptr<storage::FileWriterDelegate> writer_delegate,
scoped_ptr<net::URLRequest> blob_request,
- const WriteCallback& callback) OVERRIDE;
+ const WriteCallback& callback) override;
virtual void Truncate(const storage::FileSystemURL& url,
int64 length,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void TouchFile(const storage::FileSystemURL& url,
const base::Time& last_access_time,
const base::Time& last_modified_time,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void OpenFile(const storage::FileSystemURL& url,
int file_flags,
- const OpenFileCallback& callback) OVERRIDE;
- virtual void Cancel(const StatusCallback& cancel_callback) OVERRIDE;
+ const OpenFileCallback& callback) override;
+ virtual void Cancel(const StatusCallback& cancel_callback) override;
virtual void CreateSnapshotFile(
const storage::FileSystemURL& path,
- const SnapshotFileCallback& callback) OVERRIDE;
+ const SnapshotFileCallback& callback) override;
virtual void CopyInForeignFile(const base::FilePath& src_local_disk_path,
const storage::FileSystemURL& dest_url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void RemoveFile(const storage::FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void RemoveDirectory(const storage::FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CopyFileLocal(const storage::FileSystemURL& src_url,
const storage::FileSystemURL& dest_url,
CopyOrMoveOption option,
const CopyFileProgressCallback& progress_callback,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void MoveFileLocal(const storage::FileSystemURL& src_url,
const storage::FileSystemURL& dest_url,
CopyOrMoveOption option,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual base::File::Error SyncGetPlatformPath(
const storage::FileSystemURL& url,
- base::FilePath* platform_path) OVERRIDE;
+ base::FilePath* platform_path) override;
private:
typedef SyncableFileSystemOperation self;

Powered by Google App Engine
This is Rietveld 408576698