| Index: content/common/indexed_db/indexed_db_messages.h
|
| diff --git a/content/common/indexed_db/indexed_db_messages.h b/content/common/indexed_db/indexed_db_messages.h
|
| index 6ca348f7e2a93282db934a44420eb4d11d5e5b32..f24e79a15b81e46d91c5e53253377868332966e3 100644
|
| --- a/content/common/indexed_db/indexed_db_messages.h
|
| +++ b/content/common/indexed_db/indexed_db_messages.h
|
| @@ -433,6 +433,15 @@ IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_IndexGetObject,
|
| int32, /* transaction_id */
|
| WebKit::WebExceptionCode /* ec */)
|
|
|
| +// WebIDBIndex::getObjectByRange() message.
|
| +IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_IndexGetObjectByRange,
|
| + int32, /* idb_index_id */
|
| + int32, /* thread_id */
|
| + int32, /* response_id */
|
| + IndexedDBKeyRange, /* key */
|
| + int32, /* transaction_id */
|
| + WebKit::WebExceptionCode /* ec */)
|
| +
|
| // WebIDBIndex::getKey() message.
|
| IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_IndexGetKey,
|
| int32, /* idb_index_id */
|
| @@ -442,6 +451,15 @@ IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_IndexGetKey,
|
| int32, /* transaction_id */
|
| WebKit::WebExceptionCode /* ec */)
|
|
|
| +// WebIDBIndex::getKeyByRange() message.
|
| +IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_IndexGetKeyByRange,
|
| + int32, /* idb_index_id */
|
| + int32, /* thread_id */
|
| + int32, /* response_id */
|
| + IndexedDBKeyRange, /* key */
|
| + int32, /* transaction_id */
|
| + WebKit::WebExceptionCode /* ec */)
|
| +
|
| // WebIDBIndex::~WebIDBIndex() message.
|
| IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_IndexDestroyed,
|
| int32 /* idb_index_id */)
|
| @@ -470,6 +488,15 @@ IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreGet,
|
| int32, /* transaction_id */
|
| WebKit::WebExceptionCode /* ec */)
|
|
|
| +// WebIDBObjectStore::get() message.
|
| +IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreGetByRange,
|
| + int32, /* idb_object_store_id */
|
| + int32, /* thread_id */
|
| + int32, /* response_id */
|
| + IndexedDBKeyRange, /* key_range */
|
| + int32, /* transaction_id */
|
| + WebKit::WebExceptionCode /* ec */)
|
| +
|
| // WebIDBObjectStore::put() message.
|
| IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_ObjectStorePut,
|
| IndexedDBHostMsg_ObjectStorePut_Params,
|
|
|