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

Unified Diff: storage/browser/fileapi/async_file_util_adapter.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
Index: storage/browser/fileapi/async_file_util_adapter.h
diff --git a/storage/browser/fileapi/async_file_util_adapter.h b/storage/browser/fileapi/async_file_util_adapter.h
index 4ba4542e1703c436c064af07c3d87e14986044e0..7dc498267b8ed5f71b1677acdda43a2582c90e9e 100644
--- a/storage/browser/fileapi/async_file_util_adapter.h
+++ b/storage/browser/fileapi/async_file_util_adapter.h
@@ -42,70 +42,70 @@ class STORAGE_EXPORT AsyncFileUtilAdapter
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
int file_flags,
- const CreateOrOpenCallback& callback) OVERRIDE;
+ const CreateOrOpenCallback& callback) override;
virtual void EnsureFileExists(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const EnsureFileExistsCallback& callback) OVERRIDE;
+ const EnsureFileExistsCallback& callback) override;
virtual void CreateDirectory(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
bool exclusive,
bool recursive,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void GetFileInfo(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const GetFileInfoCallback& callback) OVERRIDE;
+ const GetFileInfoCallback& callback) override;
virtual void ReadDirectory(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const ReadDirectoryCallback& callback) OVERRIDE;
+ const ReadDirectoryCallback& callback) override;
virtual void Touch(
scoped_ptr<FileSystemOperationContext> context,
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 Truncate(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
int64 length,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CopyFileLocal(
scoped_ptr<FileSystemOperationContext> context,
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(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOption option,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CopyInForeignFile(
scoped_ptr<FileSystemOperationContext> context,
const base::FilePath& src_file_path,
const FileSystemURL& dest_url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void DeleteFile(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void DeleteDirectory(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void DeleteRecursively(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const StatusCallback& callback) OVERRIDE;
+ const StatusCallback& callback) override;
virtual void CreateSnapshotFile(
scoped_ptr<FileSystemOperationContext> context,
const FileSystemURL& url,
- const CreateSnapshotFileCallback& callback) OVERRIDE;
+ const CreateSnapshotFileCallback& callback) override;
private:
scoped_ptr<FileSystemFileUtil> sync_file_util_;
« no previous file with comments | « storage/browser/database/database_quota_client.h ('k') | storage/browser/fileapi/copy_or_move_operation_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698