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

Unified Diff: storage/browser/fileapi/sandbox_file_system_backend_delegate.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/sandbox_file_system_backend_delegate.h
diff --git a/storage/browser/fileapi/sandbox_file_system_backend_delegate.h b/storage/browser/fileapi/sandbox_file_system_backend_delegate.h
index c22b8fd8d4a07e8ee3261d3625759427186b2919..88dec7fbb8f99374de812ebed29f0e48f6b34965 100644
--- a/storage/browser/fileapi/sandbox_file_system_backend_delegate.h
+++ b/storage/browser/fileapi/sandbox_file_system_backend_delegate.h
@@ -87,7 +87,7 @@ class STORAGE_EXPORT SandboxFileSystemBackendDelegate
storage::SpecialStoragePolicy* special_storage_policy,
const FileSystemOptions& file_system_options);
- virtual ~SandboxFileSystemBackendDelegate();
+ ~SandboxFileSystemBackendDelegate() override;
// Returns an origin enumerator of sandbox filesystem.
// This method can only be called on the file thread.
@@ -127,26 +127,22 @@ class STORAGE_EXPORT SandboxFileSystemBackendDelegate
FileSystemType type) const;
// FileSystemQuotaUtil overrides.
- virtual base::File::Error DeleteOriginDataOnFileTaskRunner(
+ base::File::Error DeleteOriginDataOnFileTaskRunner(
FileSystemContext* context,
storage::QuotaManagerProxy* proxy,
const GURL& origin_url,
FileSystemType type) override;
- virtual void GetOriginsForTypeOnFileTaskRunner(
- FileSystemType type,
- std::set<GURL>* origins) override;
- virtual void GetOriginsForHostOnFileTaskRunner(
- FileSystemType type,
- const std::string& host,
- std::set<GURL>* origins) override;
- virtual int64 GetOriginUsageOnFileTaskRunner(
- FileSystemContext* context,
+ void GetOriginsForTypeOnFileTaskRunner(FileSystemType type,
+ std::set<GURL>* origins) override;
+ void GetOriginsForHostOnFileTaskRunner(FileSystemType type,
+ const std::string& host,
+ std::set<GURL>* origins) override;
+ int64 GetOriginUsageOnFileTaskRunner(FileSystemContext* context,
+ const GURL& origin_url,
+ FileSystemType type) override;
+ scoped_refptr<QuotaReservation> CreateQuotaReservationOnFileTaskRunner(
const GURL& origin_url,
FileSystemType type) override;
- virtual scoped_refptr<QuotaReservation>
- CreateQuotaReservationOnFileTaskRunner(
- const GURL& origin_url,
- FileSystemType type) override;
// Adds an observer for the secified |type| of a file system, bound to
// |task_runner|.
« no previous file with comments | « storage/browser/fileapi/sandbox_file_system_backend.h ('k') | storage/browser/fileapi/sandbox_file_system_backend_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698