| 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 2ade76f17c5ae5f552906b6e44b2a11d008ef58e..6ca348f7e2a93282db934a44420eb4d11d5e5b32 100644
|
| --- a/content/common/indexed_db/indexed_db_messages.h
|
| +++ b/content/common/indexed_db/indexed_db_messages.h
|
| @@ -7,6 +7,7 @@
|
| #include <vector>
|
|
|
| #include "content/common/indexed_db/indexed_db_key.h"
|
| +#include "content/common/indexed_db/indexed_db_key_range.h"
|
| #include "content/common/indexed_db/indexed_db_param_traits.h"
|
| #include "content/public/common/serialized_script_value.h"
|
| #include "ipc/ipc_message_macros.h"
|
| @@ -474,7 +475,7 @@ IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_ObjectStorePut,
|
| IndexedDBHostMsg_ObjectStorePut_Params,
|
| WebKit::WebExceptionCode /* ec */)
|
|
|
| -// WebIDBObjectStore::delete() message.
|
| +// WebIDBObjectStore::delete(key) message.
|
| IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreDelete,
|
| int32, /* idb_object_store_id */
|
| int32, /* thread_id */
|
| @@ -483,6 +484,15 @@ IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreDelete,
|
| int32, /* transaction_id */
|
| WebKit::WebExceptionCode /* ec */)
|
|
|
| +// WebIDBObjectStore::delete(keyRange) message.
|
| +IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreDeleteRange,
|
| + int32, /* idb_object_store_id */
|
| + int32, /* thread_id */
|
| + int32, /* response_id */
|
| + IndexedDBKeyRange, /* key_range */
|
| + int32, /* transaction_id */
|
| + WebKit::WebExceptionCode /* ec */)
|
| +
|
| // WebIDBObjectStore::clear() message.
|
| IPC_SYNC_MESSAGE_CONTROL4_1(IndexedDBHostMsg_ObjectStoreClear,
|
| int32, /* idb_object_store_id */
|
|
|