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

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

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
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBCursor.cpp » ('j') | Source/modules/indexeddb/IDBDatabase.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBCursor.h
diff --git a/Source/modules/indexeddb/IDBCursor.h b/Source/modules/indexeddb/IDBCursor.h
index 0c8831f6e3363276fbcbf18696bfc68add787516..47419767850cd02606e296df955b48bcfc17a034 100644
--- a/Source/modules/indexeddb/IDBCursor.h
+++ b/Source/modules/indexeddb/IDBCursor.h
@@ -93,10 +93,10 @@ private:
const WebIDBCursorDirection m_direction;
Member<IDBAny> m_source;
Member<IDBTransaction> m_transaction;
- bool m_gotValue;
- bool m_keyDirty;
- bool m_primaryKeyDirty;
- bool m_valueDirty;
+ bool m_gotValue = false;
+ bool m_keyDirty = true;
+ bool m_primaryKeyDirty = true;
+ bool m_valueDirty = true;
Member<IDBKey> m_key;
Member<IDBKey> m_primaryKey;
RefPtr<IDBValue> m_value;
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBCursor.cpp » ('j') | Source/modules/indexeddb/IDBDatabase.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698