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

Unified Diff: storage/browser/fileapi/local_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.h ('k') | storage/browser/fileapi/native_file_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/local_file_util.cc
diff --git a/storage/browser/fileapi/local_file_util.cc b/storage/browser/fileapi/local_file_util.cc
index 5f3be4f1f464ff740f544506d416aeba68cf329c..27a130817c388140953e7d273c77a0231329411d 100644
--- a/storage/browser/fileapi/local_file_util.cc
+++ b/storage/browser/fileapi/local_file_util.cc
@@ -32,12 +32,12 @@ class LocalFileEnumerator : public FileSystemFileUtil::AbstractFileEnumerator {
virtual_root_path_(virtual_root_path) {
}
- virtual ~LocalFileEnumerator() {}
+ ~LocalFileEnumerator() 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.h ('k') | storage/browser/fileapi/native_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698