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

Unified Diff: Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.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/DeprecatedStorageQuota.h ('k') | Source/modules/quota/NavigatorStorageQuota.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
diff --git a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
index 8cf95259b384f03c49453de4ea4d7a93a0b03171..9ff7e2c8d8a8c4125f0641d6a562ac97b8ce48b8 100644
--- a/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
+++ b/Source/modules/quota/DeprecatedStorageQuotaCallbacksImpl.h
@@ -41,7 +41,7 @@
namespace blink {
-class DeprecatedStorageQuotaCallbacksImpl FINAL : public StorageQuotaCallbacks {
+class DeprecatedStorageQuotaCallbacksImpl final : public StorageQuotaCallbacks {
public:
static PassOwnPtrWillBeRawPtr<DeprecatedStorageQuotaCallbacksImpl> create(StorageUsageCallback* success, StorageErrorCallback* error)
{
@@ -54,11 +54,11 @@ public:
}
virtual ~DeprecatedStorageQuotaCallbacksImpl();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) 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;
+ 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:
DeprecatedStorageQuotaCallbacksImpl(StorageUsageCallback*, StorageErrorCallback*);
« no previous file with comments | « Source/modules/quota/DeprecatedStorageQuota.h ('k') | Source/modules/quota/NavigatorStorageQuota.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698