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

Unified Diff: storage/browser/fileapi/file_system_operation_impl.h

Issue 624063003: Replacing the OVERRIDE with override and FINAL with final in storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the error 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
« no previous file with comments | « storage/browser/fileapi/file_system_file_util.h ('k') | storage/browser/fileapi/file_system_quota_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/file_system_operation_impl.h
diff --git a/storage/browser/fileapi/file_system_operation_impl.h b/storage/browser/fileapi/file_system_operation_impl.h
index 76cf4366ee24400eb898df68c4482995f3f88d06..ca855d17eefe306bd856a7cc2508b7b32ba08c2f 100644
--- a/storage/browser/fileapi/file_system_operation_impl.h
+++ b/storage/browser/fileapi/file_system_operation_impl.h
@@ -33,66 +33,66 @@ class STORAGE_EXPORT FileSystemOperationImpl
// FileSystemOperation overrides.
virtual void CreateFile(const FileSystemURL& url,
bool exclusive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CreateDirectory(const FileSystemURL& url,
bool exclusive,
bool recursive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void Copy(const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOption option,
const CopyProgressCallback& progress_callback,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void Move(const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOption option,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void DirectoryExists(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void FileExists(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void GetMetadata(const FileSystemURL& url,
- const GetMetadataCallback& callback) OVERRIDE;
+ const GetMetadataCallback& callback) override;
virtual void ReadDirectory(const FileSystemURL& url,
- const ReadDirectoryCallback& callback) OVERRIDE;
+ const ReadDirectoryCallback& callback) override;
virtual void Remove(const FileSystemURL& url, bool recursive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void Write(const FileSystemURL& url,
scoped_ptr<FileWriterDelegate> writer_delegate,
scoped_ptr<net::URLRequest> blob_request,
- const WriteCallback& callback) OVERRIDE;
+ const WriteCallback& callback) override;
virtual void Truncate(const FileSystemURL& url, int64 length,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void TouchFile(const 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 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 FileSystemURL& path,
- const SnapshotFileCallback& callback) OVERRIDE;
+ const SnapshotFileCallback& callback) override;
virtual void CopyInForeignFile(const base::FilePath& src_local_disk_path,
const FileSystemURL& dest_url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void RemoveFile(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void RemoveDirectory(const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CopyFileLocal(const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOption option,
const CopyFileProgressCallback& progress_callback,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void MoveFileLocal(const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOption option,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual base::File::Error SyncGetPlatformPath(
const FileSystemURL& url,
- base::FilePath* platform_path) OVERRIDE;
+ base::FilePath* platform_path) override;
FileSystemContext* file_system_context() const {
return file_system_context_.get();
« no previous file with comments | « storage/browser/fileapi/file_system_file_util.h ('k') | storage/browser/fileapi/file_system_quota_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698