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

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

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/dragged_file_util.h ('k') | storage/browser/fileapi/external_mount_points.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/dragged_file_util.cc
diff --git a/storage/browser/fileapi/dragged_file_util.cc b/storage/browser/fileapi/dragged_file_util.cc
index 1f15188a5f0bd287249df73d618e1ed19532540b..7c96d64a367d1edd5e92ffbf9534c9cbb4783925 100644
--- a/storage/browser/fileapi/dragged_file_util.cc
+++ b/storage/browser/fileapi/dragged_file_util.cc
@@ -32,16 +32,16 @@ class SetFileEnumerator : public FileSystemFileUtil::AbstractFileEnumerator {
virtual ~SetFileEnumerator() {}
// AbstractFileEnumerator overrides.
- virtual base::FilePath Next() OVERRIDE {
+ virtual base::FilePath Next() override {
if (file_iter_ == files_.end())
return base::FilePath();
base::FilePath platform_file = (file_iter_++)->path;
NativeFileUtil::GetFileInfo(platform_file, &file_info_);
return platform_file;
}
- virtual int64 Size() OVERRIDE { return file_info_.size; }
- virtual bool IsDirectory() OVERRIDE { return file_info_.is_directory; }
- virtual base::Time LastModifiedTime() OVERRIDE {
+ virtual int64 Size() override { return file_info_.size; }
+ virtual bool IsDirectory() override { return file_info_.is_directory; }
+ virtual base::Time LastModifiedTime() override {
return file_info_.last_modified;
}
« no previous file with comments | « storage/browser/fileapi/dragged_file_util.h ('k') | storage/browser/fileapi/external_mount_points.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698