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

Unified Diff: storage/browser/fileapi/obfuscated_file_util.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/native_file_util.cc ('k') | storage/browser/fileapi/obfuscated_file_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/obfuscated_file_util.h
diff --git a/storage/browser/fileapi/obfuscated_file_util.h b/storage/browser/fileapi/obfuscated_file_util.h
index 822a85d11d83eca6b00a78dc59fb8219b1ff841f..a597ccd8360cf2d70cd75a9e6d6e0bb3cc47c6ff 100644
--- a/storage/browser/fileapi/obfuscated_file_util.h
+++ b/storage/browser/fileapi/obfuscated_file_util.h
@@ -114,58 +114,58 @@ class STORAGE_EXPORT_PRIVATE ObfuscatedFileUtil
virtual base::File CreateOrOpen(
FileSystemOperationContext* context,
const FileSystemURL& url,
- int file_flags) OVERRIDE;
+ int file_flags) override;
virtual base::File::Error EnsureFileExists(
FileSystemOperationContext* context,
- const FileSystemURL& url, bool* created) OVERRIDE;
+ const FileSystemURL& url, bool* created) override;
virtual base::File::Error CreateDirectory(
FileSystemOperationContext* context,
const FileSystemURL& url,
bool exclusive,
- bool recursive) OVERRIDE;
+ bool recursive) override;
virtual base::File::Error GetFileInfo(
FileSystemOperationContext* context,
const FileSystemURL& url,
base::File::Info* file_info,
- base::FilePath* platform_file) OVERRIDE;
+ base::FilePath* platform_file) override;
virtual scoped_ptr<AbstractFileEnumerator> CreateFileEnumerator(
FileSystemOperationContext* context,
- const FileSystemURL& root_url) OVERRIDE;
+ const FileSystemURL& root_url) override;
virtual base::File::Error GetLocalFilePath(
FileSystemOperationContext* context,
const FileSystemURL& file_system_url,
- base::FilePath* local_path) OVERRIDE;
+ base::FilePath* local_path) override;
virtual base::File::Error Touch(
FileSystemOperationContext* context,
const FileSystemURL& url,
const base::Time& last_access_time,
- const base::Time& last_modified_time) OVERRIDE;
+ const base::Time& last_modified_time) override;
virtual base::File::Error Truncate(
FileSystemOperationContext* context,
const FileSystemURL& url,
- int64 length) OVERRIDE;
+ int64 length) override;
virtual base::File::Error CopyOrMoveFile(
FileSystemOperationContext* context,
const FileSystemURL& src_url,
const FileSystemURL& dest_url,
CopyOrMoveOption option,
- bool copy) OVERRIDE;
+ bool copy) override;
virtual base::File::Error CopyInForeignFile(
FileSystemOperationContext* context,
const base::FilePath& src_file_path,
- const FileSystemURL& dest_url) OVERRIDE;
+ const FileSystemURL& dest_url) override;
virtual base::File::Error DeleteFile(
FileSystemOperationContext* context,
- const FileSystemURL& url) OVERRIDE;
+ const FileSystemURL& url) override;
virtual base::File::Error DeleteDirectory(
FileSystemOperationContext* context,
- const FileSystemURL& url) OVERRIDE;
+ const FileSystemURL& url) override;
virtual storage::ScopedFile CreateSnapshotFile(
FileSystemOperationContext* context,
const FileSystemURL& url,
base::File::Error* error,
base::File::Info* file_info,
- base::FilePath* platform_path) OVERRIDE;
+ base::FilePath* platform_path) override;
// Same as the other CreateFileEnumerator, but with recursive support.
scoped_ptr<AbstractFileEnumerator> CreateFileEnumerator(
« no previous file with comments | « storage/browser/fileapi/native_file_util.cc ('k') | storage/browser/fileapi/obfuscated_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698