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

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

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
« no previous file with comments | « Source/modules/quota/StorageQuota.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/StorageQuotaCallbacksImpl.h
diff --git a/Source/modules/quota/StorageQuotaCallbacksImpl.h b/Source/modules/quota/StorageQuotaCallbacksImpl.h
index cccecbb5b575fcfc2a9608b554fd0d372728bb94..1bdf0f51343aeaa71211bec63ebd9ebc5f5f10f2 100644
--- a/Source/modules/quota/StorageQuotaCallbacksImpl.h
+++ b/Source/modules/quota/StorageQuotaCallbacksImpl.h
@@ -39,7 +39,7 @@
namespace blink {
-class StorageQuotaCallbacksImpl FINAL : public StorageQuotaCallbacks {
+class StorageQuotaCallbacksImpl final : public StorageQuotaCallbacks {
WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl);
public:
static PassOwnPtrWillBeRawPtr<StorageQuotaCallbacksImpl> create(PassRefPtr<ScriptPromiseResolver> resolver)
@@ -49,9 +49,9 @@ public:
virtual ~StorageQuotaCallbacksImpl();
- 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;
+ 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;
private:
StorageQuotaCallbacksImpl(PassRefPtr<ScriptPromiseResolver>);
« no previous file with comments | « Source/modules/quota/StorageQuota.h ('k') | Source/modules/quota/WorkerNavigatorStorageQuota.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698