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

Unified Diff: Source/modules/indexeddb/IDBCursor.cpp

Issue 1323323002: IndexedDB: Various C++11isms and cleanup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: True, false, whatever Created 5 years, 3 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
Index: Source/modules/indexeddb/IDBCursor.cpp
diff --git a/Source/modules/indexeddb/IDBCursor.cpp b/Source/modules/indexeddb/IDBCursor.cpp
index f553e169c4febc028a484415bb8ce7d357c6382b..3605b535c0cbd7889939a98cd10bbef4fc5e4af5 100644
--- a/Source/modules/indexeddb/IDBCursor.cpp
+++ b/Source/modules/indexeddb/IDBCursor.cpp
@@ -61,10 +61,6 @@ IDBCursor::IDBCursor(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection dir
, m_direction(direction)
, m_source(source)
, m_transaction(transaction)
- , m_gotValue(false)
- , m_keyDirty(true)
- , m_primaryKeyDirty(true)
- , m_valueDirty(true)
{
ASSERT(m_backend);
ASSERT(m_request);

Powered by Google App Engine
This is Rietveld 408576698