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

Unified Diff: Source/modules/indexeddb/IDBCursorWithValue.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/DOMWindowIndexedDatabase.h ('k') | Source/modules/indexeddb/IDBDatabase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBCursorWithValue.h
diff --git a/Source/modules/indexeddb/IDBCursorWithValue.h b/Source/modules/indexeddb/IDBCursorWithValue.h
index fd069ca8740af0f8a5e41299d9839900ea936a94..49ab3e51914771fe209412ec53c6399c86a8eceb 100644
--- a/Source/modules/indexeddb/IDBCursorWithValue.h
+++ b/Source/modules/indexeddb/IDBCursorWithValue.h
@@ -42,13 +42,13 @@ class IDBCursorWithValue final : public IDBCursor {
DEFINE_WRAPPERTYPEINFO();
public:
static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
- virtual ~IDBCursorWithValue();
+ ~IDBCursorWithValue() override;
// The value attribute defined in the IDL is simply implemented in IDBCursor (but not exposed via
// its IDL). This is to make the implementation more simple while matching what the spec says.
- virtual bool isKeyCursor() const override { return false; }
- virtual bool isCursorWithValue() const override { return true; }
+ bool isKeyCursor() const override { return false; }
+ bool isCursorWithValue() const override { return true; }
private:
IDBCursorWithValue(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
« no previous file with comments | « Source/modules/indexeddb/DOMWindowIndexedDatabase.h ('k') | Source/modules/indexeddb/IDBDatabase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698