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

Unified Diff: Source/web/StorageQuotaClientImpl.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/web/StorageClientImpl.h ('k') | Source/web/SuspendableScriptExecutor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/StorageQuotaClientImpl.h
diff --git a/Source/web/StorageQuotaClientImpl.h b/Source/web/StorageQuotaClientImpl.h
index eaf29613f5d3339330e6726cb3701a3a64d8d666..a03731480723a90276fbd2a4059a7e6f5d9fc7b7 100644
--- a/Source/web/StorageQuotaClientImpl.h
+++ b/Source/web/StorageQuotaClientImpl.h
@@ -44,10 +44,10 @@ public:
return adoptPtrWillBeNoop(new StorageQuotaClientImpl());
}
- virtual ~StorageQuotaClientImpl();
+ ~StorageQuotaClientImpl() override;
- virtual void requestQuota(ExecutionContext*, WebStorageQuotaType, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*) override;
- virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) override;
+ void requestQuota(ExecutionContext*, WebStorageQuotaType, unsigned long long newQuotaInBytes, StorageQuotaCallback*, StorageErrorCallback*) override;
+ ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) override;
DEFINE_INLINE_VIRTUAL_TRACE() { StorageQuotaClient::trace(visitor); }
« no previous file with comments | « Source/web/StorageClientImpl.h ('k') | Source/web/SuspendableScriptExecutor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698