| Index: content/browser/indexed_db/indexed_db_database_impl.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_database_impl.cc b/content/browser/indexed_db/indexed_db_database_impl.cc
|
| index 9ecc611fb9d46775426b15d532469fb43e823dc9..33526026454ed065b47b28f8c6300fdb699e014a 100644
|
| --- a/content/browser/indexed_db/indexed_db_database_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_database_impl.cc
|
| @@ -1237,12 +1237,8 @@ void OpenCursorOperation::Perform(IndexedDBTransaction* transaction) {
|
|
|
| IndexedDBDatabase::TaskType task_type(
|
| static_cast<IndexedDBDatabase::TaskType>(task_type_));
|
| - scoped_refptr<IndexedDBCursorImpl> cursor =
|
| - IndexedDBCursorImpl::Create(backing_store_cursor.Pass(),
|
| - cursor_type_,
|
| - task_type,
|
| - transaction,
|
| - object_store_id_);
|
| + scoped_refptr<IndexedDBCursorImpl> cursor = IndexedDBCursorImpl::Create(
|
| + backing_store_cursor.Pass(), cursor_type_, task_type, transaction);
|
| callbacks_->OnSuccess(
|
| cursor, cursor->key(), cursor->primary_key(), cursor->Value());
|
| }
|
|
|