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

Unified Diff: Source/modules/indexeddb/IDBCursorWithValue.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/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 1f86d1c55446fda5b1acf91b421233daed2a7823..ba81650727729c1455aec021d3dddda0ec1a314b 100644
--- a/Source/modules/indexeddb/IDBCursorWithValue.h
+++ b/Source/modules/indexeddb/IDBCursorWithValue.h
@@ -38,7 +38,7 @@ class IDBAny;
class IDBRequest;
class IDBTransaction;
-class IDBCursorWithValue FINAL : public IDBCursor {
+class IDBCursorWithValue final : public IDBCursor {
DEFINE_WRAPPERTYPEINFO();
public:
static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
@@ -47,8 +47,8 @@ public:
// 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; }
+ virtual bool isKeyCursor() const override { return false; }
+ virtual 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