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

Unified Diff: Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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: Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
diff --git a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
index 7ea28f46a09360699a226a69826c354bae30a8ba..5b80d08a7732469dfebee5b772b93b7da8c0720c 100644
--- a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
+++ b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
@@ -54,12 +54,12 @@ public:
return new DeprecatedStorageQuotaCallbacksImpl(success, error);
}
- virtual ~DeprecatedStorageQuotaCallbacksImpl();
+ ~DeprecatedStorageQuotaCallbacksImpl() override;
DECLARE_VIRTUAL_TRACE();
- virtual void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes) override;
- virtual void didGrantStorageQuota(unsigned long long usageInBytes, unsigned long long grantedQuotaInBytes) override;
- virtual void didFail(WebStorageQuotaError) override;
+ void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes) override;
+ void didGrantStorageQuota(unsigned long long usageInBytes, unsigned long long grantedQuotaInBytes) override;
+ void didFail(WebStorageQuotaError) override;
private:
DeprecatedStorageQuotaCallbacksImpl(StorageUsageCallback*, StorageErrorCallback*);
« no previous file with comments | « Source/modules/push_messaging/PushPermissionStatusCallbacks.h ('k') | Source/modules/quota/StorageErrorCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698