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

Unified Diff: storage/browser/fileapi/isolated_context.h

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
Index: storage/browser/fileapi/isolated_context.h
diff --git a/storage/browser/fileapi/isolated_context.h b/storage/browser/fileapi/isolated_context.h
index 2501a999fa5e461b9dfc94f06f55bec9b0018512..ff1f58e0344b5647363b63e9466c7716736d585c 100644
--- a/storage/browser/fileapi/isolated_context.h
+++ b/storage/browser/fileapi/isolated_context.h
@@ -141,19 +141,18 @@ class STORAGE_EXPORT IsolatedContext : public MountPoints {
std::vector<MountPointInfo>* files) const;
// MountPoints overrides.
- virtual bool HandlesFileSystemMountType(FileSystemType type) const override;
- virtual bool RevokeFileSystem(const std::string& filesystem_id) override;
- virtual bool GetRegisteredPath(const std::string& filesystem_id,
- base::FilePath* path) const override;
- virtual bool CrackVirtualPath(
- const base::FilePath& virtual_path,
- std::string* filesystem_id,
- FileSystemType* type,
- std::string* cracked_id,
- base::FilePath* path,
- FileSystemMountOption* mount_option) const override;
- virtual FileSystemURL CrackURL(const GURL& url) const override;
- virtual FileSystemURL CreateCrackedFileSystemURL(
+ bool HandlesFileSystemMountType(FileSystemType type) const override;
+ bool RevokeFileSystem(const std::string& filesystem_id) override;
+ bool GetRegisteredPath(const std::string& filesystem_id,
+ base::FilePath* path) const override;
+ bool CrackVirtualPath(const base::FilePath& virtual_path,
+ std::string* filesystem_id,
+ FileSystemType* type,
+ std::string* cracked_id,
+ base::FilePath* path,
+ FileSystemMountOption* mount_option) const override;
+ FileSystemURL CrackURL(const GURL& url) const override;
+ FileSystemURL CreateCrackedFileSystemURL(
const GURL& origin,
FileSystemType type,
const base::FilePath& path) const override;
@@ -174,11 +173,10 @@ class STORAGE_EXPORT IsolatedContext : public MountPoints {
// Obtain an instance of this class via GetInstance().
IsolatedContext();
- virtual ~IsolatedContext();
+ ~IsolatedContext() override;
// MountPoints overrides.
- virtual FileSystemURL CrackFileSystemURL(
- const FileSystemURL& url) const override;
+ FileSystemURL CrackFileSystemURL(const FileSystemURL& url) const override;
// Unregisters a file system of given |filesystem_id|. Must be called with
// lock_ held. Returns true if the file system is unregistered.
« no previous file with comments | « storage/browser/fileapi/file_writer_delegate.h ('k') | storage/browser/fileapi/isolated_file_system_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698