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

Unified Diff: storage/browser/fileapi/external_mount_points.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/external_mount_points.h
diff --git a/storage/browser/fileapi/external_mount_points.h b/storage/browser/fileapi/external_mount_points.h
index 26468c539011af3744dc0bba3c8aa97ddf6d7055..d80c511847d772654b0a65c1bae65cd03971fbdd 100644
--- a/storage/browser/fileapi/external_mount_points.h
+++ b/storage/browser/fileapi/external_mount_points.h
@@ -65,22 +65,22 @@ class STORAGE_EXPORT ExternalMountPoints
const base::FilePath& path);
// MountPoints overrides.
- virtual bool HandlesFileSystemMountType(FileSystemType type) const OVERRIDE;
- virtual bool RevokeFileSystem(const std::string& mount_name) OVERRIDE;
+ virtual bool HandlesFileSystemMountType(FileSystemType type) const override;
+ virtual bool RevokeFileSystem(const std::string& mount_name) override;
virtual bool GetRegisteredPath(const std::string& mount_name,
- base::FilePath* path) const OVERRIDE;
+ base::FilePath* path) const override;
virtual bool CrackVirtualPath(
const base::FilePath& virtual_path,
std::string* mount_name,
FileSystemType* type,
std::string* cracked_id,
base::FilePath* path,
- FileSystemMountOption* mount_option) const OVERRIDE;
- virtual FileSystemURL CrackURL(const GURL& url) const OVERRIDE;
+ FileSystemMountOption* mount_option) const override;
+ virtual FileSystemURL CrackURL(const GURL& url) const override;
virtual FileSystemURL CreateCrackedFileSystemURL(
const GURL& origin,
FileSystemType type,
- const base::FilePath& path) const OVERRIDE;
+ const base::FilePath& path) const override;
// Returns a list of registered MountPointInfos (of <mount_name, path>).
void AddMountPointInfosTo(std::vector<MountPointInfo>* mount_points) const;
@@ -130,7 +130,7 @@ class STORAGE_EXPORT ExternalMountPoints
// MountPoint overrides.
virtual FileSystemURL CrackFileSystemURL(
- const FileSystemURL& url) const OVERRIDE;
+ const FileSystemURL& url) const override;
// Performs sanity checks on the new mount point.
// Checks the following:
« no previous file with comments | « storage/browser/fileapi/dragged_file_util.cc ('k') | storage/browser/fileapi/file_system_dir_url_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698