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

Unified Diff: Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.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
« no previous file with comments | « Source/modules/indexeddb/WebIDBCallbacksImpl.h ('k') | Source/modules/mediasource/MediaSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h
diff --git a/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h b/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h
index baecd4cc9ea9157c750b25cd6dae0b3f0cd41282..9e43b5373c596ba7d4f09a786a60fdbb185749ee 100644
--- a/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h
+++ b/Source/modules/indexeddb/WebIDBDatabaseCallbacksImpl.h
@@ -40,12 +40,12 @@ class WebIDBDatabaseCallbacksImpl final : public WebIDBDatabaseCallbacks {
public:
static PassOwnPtr<WebIDBDatabaseCallbacksImpl> create(IDBDatabaseCallbacks*);
- virtual ~WebIDBDatabaseCallbacksImpl();
+ ~WebIDBDatabaseCallbacksImpl() override;
- virtual void onForcedClose() override;
- virtual void onVersionChange(long long oldVersion, long long newVersion) override;
- virtual void onAbort(long long transactionId, const WebIDBDatabaseError&) override;
- virtual void onComplete(long long transactionId) override;
+ void onForcedClose() override;
+ void onVersionChange(long long oldVersion, long long newVersion) override;
+ void onAbort(long long transactionId, const WebIDBDatabaseError&) override;
+ void onComplete(long long transactionId) override;
private:
explicit WebIDBDatabaseCallbacksImpl(IDBDatabaseCallbacks*);
« no previous file with comments | « Source/modules/indexeddb/WebIDBCallbacksImpl.h ('k') | Source/modules/mediasource/MediaSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698