summaryrefslogtreecommitdiffstats
path: root/chrome/common/render_messages_internal.h
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-23 12:24:53 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-23 12:24:53 +0000
commit284e0d6e941b4a87f56cfd7cab70a69194e50cae (patch)
treec8df36841e4a2533c630b9ea2e0ad2bee6257e80 /chrome/common/render_messages_internal.h
parent341c086742954026993de725d0af8118e14d2862 (diff)
downloadchromium_src-284e0d6e941b4a87f56cfd7cab70a69194e50cae.zip
chromium_src-284e0d6e941b4a87f56cfd7cab70a69194e50cae.tar.gz
chromium_src-284e0d6e941b4a87f56cfd7cab70a69194e50cae.tar.bz2
Revert 60275.
TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rw-r--r--chrome/common/render_messages_internal.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index 0149bf4..969ea16 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -2462,18 +2462,16 @@ IPC_BEGIN_MESSAGES(ViewHost)
ViewHostMsg_IDBIndexOpenCursor_Params)
// WebIDBIndex::getObject() message.
- IPC_MESSAGE_CONTROL4(ViewHostMsg_IDBIndexGetObject,
+ IPC_MESSAGE_CONTROL3(ViewHostMsg_IDBIndexGetObject,
int32, /* idb_index_id */
int32, /* response_id */
- IndexedDBKey, /* key */
- int /* transaction_id */)
+ IndexedDBKey /* key */)
// WebIDBIndex::get() message.
- IPC_MESSAGE_CONTROL4(ViewHostMsg_IDBIndexGet,
+ IPC_MESSAGE_CONTROL3(ViewHostMsg_IDBIndexGet,
int32, /* idb_index_id */
int32, /* response_id */
- IndexedDBKey, /* key */
- int /* transaction_id */)
+ IndexedDBKey /* key */)
// WebIDBIndex::~WebIDBIndex() message.
IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBIndexDestroyed,
@@ -2495,22 +2493,24 @@ IPC_BEGIN_MESSAGES(ViewHost)
std::vector<string16> /* index_names */)
// WebIDBObjectStore::get() message.
- IPC_MESSAGE_CONTROL4(ViewHostMsg_IDBObjectStoreGet,
+ IPC_MESSAGE_CONTROL3(ViewHostMsg_IDBObjectStoreGet,
int32, /* idb_object_store_id */
int32, /* response_id */
- IndexedDBKey, /* key */
- int /* transaction_id */)
+ IndexedDBKey /* key */)
// WebIDBObjectStore::put() message.
- IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBObjectStorePut,
- ViewHostMsg_IDBObjectStorePut_Params)
+ IPC_MESSAGE_CONTROL5(ViewHostMsg_IDBObjectStorePut,
+ int32, /* idb_object_store_id */
+ int32, /* response_id */
+ SerializedScriptValue, /* serialized_value */
+ IndexedDBKey, /* key */
+ bool /* add_only */)
// WebIDBObjectStore::remove() message.
- IPC_MESSAGE_CONTROL4(ViewHostMsg_IDBObjectStoreRemove,
+ IPC_MESSAGE_CONTROL3(ViewHostMsg_IDBObjectStoreRemove,
int32, /* idb_object_store_id */
int32, /* response_id */
- IndexedDBKey, /* key */
- int /* transaction_id */)
+ IndexedDBKey /* key */)
// WebIDBObjectStore::createIndex() message.
IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBObjectStoreCreateIndex,