RESOLVED FIXED 163954
IndexedDB 2.0: Support IDBObjectStore openKeyCursor
https://bugs.webkit.org/show_bug.cgi?id=163954
Summary IndexedDB 2.0: Support IDBObjectStore openKeyCursor
Brady Eidson
Reported 2016-10-25 10:23:11 PDT
IndexedDB 2.0: Support IDBObjectStore openKeyCursor
Attachments
Patch (24.25 KB, patch)
2016-10-25 13:34 PDT, Brady Eidson
no flags
Patch (24.19 KB, patch)
2016-10-25 13:40 PDT, Brady Eidson
no flags
Patch (24.02 KB, patch)
2016-10-25 13:40 PDT, Brady Eidson
aestes: review+
Brady Eidson
Comment 1 2016-10-25 10:23:33 PDT
Brady Eidson
Comment 2 2016-10-25 13:34:55 PDT
Brady Eidson
Comment 3 2016-10-25 13:40:14 PDT
Brady Eidson
Comment 4 2016-10-25 13:40:51 PDT
Andy Estes
Comment 5 2016-10-25 13:49:44 PDT
Comment on attachment 292812 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=292812&action=review > Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp:168 > - auto info = IDBCursorInfo::objectStoreCursor(m_transaction.get(), m_info.identifier(), range, direction.value()); > + auto info = IDBCursorInfo::objectStoreCursor(m_transaction.get(), m_info.identifier(), range.get(), direction.value(), IndexedDB::CursorType::KeyAndValue); I was confused by the implicit conversion from a IDBKeyRange* to a IDBKeyRangeData. Since IDBCursorInfo::objectStoreCursor() is always passed a IDBKeyRangeData temporary, maybe this range can be moved into its destination IDBCursorInfo? Not something you have to change here, but just a thought.
Brady Eidson
Comment 6 2016-10-25 14:46:02 PDT
Note You need to log in before you can comment on or make changes to this bug.