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

Unified Diff: content/child/indexed_db/indexed_db_dispatcher.cc

Issue 1147433002: IndexedDB: Added IDBIndex.getAll() implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaked getAll comments in indexed_db_database.cc 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
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | content/child/indexed_db/webidbdatabase_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | content/child/indexed_db/webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698