Index: content/common/indexed_db/indexed_db_dispatcher.cc |
diff --git a/content/common/indexed_db/indexed_db_dispatcher.cc b/content/common/indexed_db/indexed_db_dispatcher.cc |
index 30e54fae6a715026e7c2900518b403a148bf4f35..25892fe6c376aa0964e43c869c0042a3d04f4abd 100644 |
--- a/content/common/indexed_db/indexed_db_dispatcher.cc |
+++ b/content/common/indexed_db/indexed_db_dispatcher.cc |
@@ -483,9 +483,10 @@ void IndexedDBDispatcher::RequestIDBObjectStoreClear( |
void IndexedDBDispatcher::RequestIDBObjectStoreOpenCursor( |
const WebIDBKeyRange& idb_key_range, |
- unsigned short direction, |
+ WebKit::WebIDBCursor::Direction direction, |
WebIDBCallbacks* callbacks_ptr, |
int32 idb_object_store_id, |
+ WebKit::WebIDBTransaction::TaskType task_type, |
const WebIDBTransaction& transaction, |
WebExceptionCode* ec) { |
ResetCursorPrefetchCaches(); |
@@ -496,6 +497,7 @@ void IndexedDBDispatcher::RequestIDBObjectStoreOpenCursor( |
params.key_range = IndexedDBKeyRange(idb_key_range); |
params.direction = direction; |
params.idb_object_store_id = idb_object_store_id; |
+ params.task_type = task_type; |
params.transaction_id = TransactionId(transaction); |
Send(new IndexedDBHostMsg_ObjectStoreOpenCursor(params, ec)); |
if (*ec) |