Index: content/child/indexed_db/indexed_db_dispatcher.cc |
diff --git a/content/child/indexed_db/indexed_db_dispatcher.cc b/content/child/indexed_db/indexed_db_dispatcher.cc |
index 5e524e7379b3348078fbac3175293a0250433a1a..87aa2a4022379b09a7cca216e3a376c05348895b 100644 |
--- a/content/child/indexed_db/indexed_db_dispatcher.cc |
+++ b/content/child/indexed_db/indexed_db_dispatcher.cc |
@@ -329,6 +329,7 @@ void IndexedDBDispatcher::RequestIDBDatabaseGetAll( |
int32 ipc_database_id, |
int64 transaction_id, |
int64 object_store_id, |
+ int64 index_id, |
const IndexedDBKeyRange& key_range, |
int64 max_count, |
WebIDBCallbacks* callbacks) { |
@@ -338,6 +339,7 @@ void IndexedDBDispatcher::RequestIDBDatabaseGetAll( |
params.ipc_database_id = ipc_database_id; |
params.transaction_id = transaction_id; |
params.object_store_id = object_store_id; |
+ params.index_id = index_id; |
params.key_range = key_range; |
params.max_count = max_count; |
Send(new IndexedDBHostMsg_DatabaseGetAll(params)); |