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

Unified Diff: storage/browser/fileapi/native_file_util.cc

Issue 669603008: Standardize usage of virtual/override/final in storage/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/local_file_util.cc ('k') | storage/browser/fileapi/obfuscated_file_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/native_file_util.cc
diff --git a/storage/browser/fileapi/native_file_util.cc b/storage/browser/fileapi/native_file_util.cc
index 84b9463eee83627473b5475d523a6828a58bc60c..5b3b61ec5a26089a6cc61972b4900c9a515056eb 100644
--- a/storage/browser/fileapi/native_file_util.cc
+++ b/storage/browser/fileapi/native_file_util.cc
@@ -81,12 +81,12 @@ class NativeFileEnumerator : public FileSystemFileUtil::AbstractFileEnumerator {
: file_enum_(root_path, recursive, file_type) {
}
- virtual ~NativeFileEnumerator() {}
+ ~NativeFileEnumerator() override {}
- virtual base::FilePath Next() override;
- virtual int64 Size() override;
- virtual base::Time LastModifiedTime() override;
- virtual bool IsDirectory() override;
+ base::FilePath Next() override;
+ int64 Size() override;
+ base::Time LastModifiedTime() override;
+ bool IsDirectory() override;
private:
base::FileEnumerator file_enum_;
« no previous file with comments | « storage/browser/fileapi/local_file_util.cc ('k') | storage/browser/fileapi/obfuscated_file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698