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

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

Issue 1147433002: IndexedDB: Added IDBIndex.getAll() implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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_dispatcher_host.cc
diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.cc b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
index 5284af054ff881d22e3f58d6e3d8b95f280a7d8a..6c1c9b175ab0dfef17ab616de0d0b2b9cdfa9649 100644
--- a/content/browser/indexed_db/indexed_db_dispatcher_host.cc
+++ b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
@@ -660,7 +660,7 @@ void IndexedDBDispatcherHost::DatabaseDispatcherHost::OnGetAll(
parent_, params.ipc_thread_id, params.ipc_callbacks_id));
connection->database()->GetAll(
parent_->HostTransactionId(params.transaction_id), params.object_store_id,
- make_scoped_ptr(new IndexedDBKeyRange(params.key_range)),
+ params.index_id, make_scoped_ptr(new IndexedDBKeyRange(params.key_range)),
params.max_count, callbacks);
}

Powered by Google App Engine
This is Rietveld 408576698