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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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
« no previous file with comments | « Source/modules/quota/StorageErrorCallback.h ('k') | Source/modules/quota/WorkerNavigatorStorageQuota.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/quota/WebStorageQuotaCallbacksImpl.h
diff --git a/Source/modules/quota/WebStorageQuotaCallbacksImpl.h b/Source/modules/quota/WebStorageQuotaCallbacksImpl.h
index 272c4f53156597e7000df859e68626ae6c0acc3e..d3e221a3df8160fc06029198e3b204d78e92963f 100644
--- a/Source/modules/quota/WebStorageQuotaCallbacksImpl.h
+++ b/Source/modules/quota/WebStorageQuotaCallbacksImpl.h
@@ -41,7 +41,7 @@
namespace WebCore {
-class WebStorageQuotaCallbacksImpl : public blink::WebStorageQuotaCallbacks {
+class WebStorageQuotaCallbacksImpl FINAL : public blink::WebStorageQuotaCallbacks {
public:
// The class is self-destructed and thus we have leakedPtr constructors.
static WebStorageQuotaCallbacksImpl* createLeakedPtr(PassOwnPtr<StorageUsageCallback> success, PassOwnPtr<StorageErrorCallback> error)
@@ -58,9 +58,9 @@ public:
virtual ~WebStorageQuotaCallbacksImpl();
- virtual void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes);
- virtual void didGrantStorageQuota(unsigned long long grantedQuotaInBytes);
- virtual void didFail(blink::WebStorageQuotaError);
+ virtual void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes) OVERRIDE;
+ virtual void didGrantStorageQuota(unsigned long long grantedQuotaInBytes) OVERRIDE;
+ virtual void didFail(blink::WebStorageQuotaError) OVERRIDE;
private:
WebStorageQuotaCallbacksImpl(PassOwnPtr<StorageUsageCallback>, PassOwnPtr<StorageErrorCallback>);
« no previous file with comments | « Source/modules/quota/StorageErrorCallback.h ('k') | Source/modules/quota/WorkerNavigatorStorageQuota.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698