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

Unified Diff: storage/browser/fileapi/quota/quota_backend_impl.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/quota/quota_backend_impl.h
diff --git a/storage/browser/fileapi/quota/quota_backend_impl.h b/storage/browser/fileapi/quota/quota_backend_impl.h
index c2d7190f5ada208d7f02f37576c34cddefd4de09..7e4092d1488eeb5021680b5336c84854ff92cb64 100644
--- a/storage/browser/fileapi/quota/quota_backend_impl.h
+++ b/storage/browser/fileapi/quota/quota_backend_impl.h
@@ -40,28 +40,21 @@ class STORAGE_EXPORT QuotaBackendImpl
ObfuscatedFileUtil* obfuscated_file_util,
FileSystemUsageCache* file_system_usage_cache,
storage::QuotaManagerProxy* quota_manager_proxy);
- virtual ~QuotaBackendImpl();
+ ~QuotaBackendImpl() override;
// QuotaReservationManager::QuotaBackend overrides.
- virtual void ReserveQuota(
- const GURL& origin,
- FileSystemType type,
- int64 delta,
- const ReserveQuotaCallback& callback) override;
- virtual void ReleaseReservedQuota(
- const GURL& origin,
- FileSystemType type,
- int64 size) override;
- virtual void CommitQuotaUsage(
- const GURL& origin,
- FileSystemType type,
- int64 delta) override;
- virtual void IncrementDirtyCount(
- const GURL& origin,
- FileSystemType type) override;
- virtual void DecrementDirtyCount(
- const GURL& origin,
- FileSystemType type) override;
+ void ReserveQuota(const GURL& origin,
+ FileSystemType type,
+ int64 delta,
+ const ReserveQuotaCallback& callback) override;
+ void ReleaseReservedQuota(const GURL& origin,
+ FileSystemType type,
+ int64 size) override;
+ void CommitQuotaUsage(const GURL& origin,
+ FileSystemType type,
+ int64 delta) override;
+ void IncrementDirtyCount(const GURL& origin, FileSystemType type) override;
+ void DecrementDirtyCount(const GURL& origin, FileSystemType type) override;
private:
friend class content::QuotaBackendImplTest;
« no previous file with comments | « storage/browser/fileapi/plugin_private_file_system_backend.h ('k') | storage/browser/fileapi/remove_operation_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698