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

Unified Diff: Source/modules/quota/StorageQuotaCallbacksImpl.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/StorageQuotaCallbacksImpl.h
diff --git a/Source/modules/quota/StorageQuotaCallbacksImpl.h b/Source/modules/quota/StorageQuotaCallbacksImpl.h
index d8dc7a029b88552d9d38c2444ea0f03e0f8f4d17..5c7a23754b5c5505fcf2699c8dd5f562323f8999 100644
--- a/Source/modules/quota/StorageQuotaCallbacksImpl.h
+++ b/Source/modules/quota/StorageQuotaCallbacksImpl.h
@@ -48,11 +48,11 @@ public:
return new StorageQuotaCallbacksImpl(resolver);
}
- virtual ~StorageQuotaCallbacksImpl();
+ ~StorageQuotaCallbacksImpl() override;
- 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;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/quota/StorageErrorCallback.h ('k') | Source/modules/screen_orientation/LockOrientationCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698