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

Unified Diff: content/browser/indexed_db/indexed_db_database_impl.cc

Issue 16337010: Remove IDBCursorBackendInterface::deleteFunction (part 2/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: 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());
}

Powered by Google App Engine
This is Rietveld 408576698