summaryrefslogtreecommitdiffstats
path: root/chrome/common/render_messages_params.h
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-06 21:27:17 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-06 21:27:17 +0000
commit6450c6e0b529029790ca3ae00aeae89f4340ff51 (patch)
treec2405188e7bb6aeb7fc014a6661a751db1f72086 /chrome/common/render_messages_params.h
parent5a90bd13b08d53364929beacafcfa8640ba167b1 (diff)
downloadchromium_src-6450c6e0b529029790ca3ae00aeae89f4340ff51.zip
chromium_src-6450c6e0b529029790ca3ae00aeae89f4340ff51.tar.gz
chromium_src-6450c6e0b529029790ca3ae00aeae89f4340ff51.tar.bz2
Fix up the IndexedDB plumbing layers to match the latest WebKit code.
Landing http://codereview.chromium.org/3550015/show TEST=none BUG=none Review URL: http://codereview.chromium.org/3575019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61709 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_params.h')
-rw-r--r--chrome/common/render_messages_params.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/common/render_messages_params.h b/chrome/common/render_messages_params.h
index 2b0c0d0..a64d5fa 100644
--- a/chrome/common/render_messages_params.h
+++ b/chrome/common/render_messages_params.h
@@ -640,9 +640,6 @@ struct ViewHostMsg_IDBDatabaseCreateObjectStore_Params {
ViewHostMsg_IDBDatabaseCreateObjectStore_Params();
~ViewHostMsg_IDBDatabaseCreateObjectStore_Params();
- // The response should have this id.
- int32 response_id_;
-
// The name of the object store.
string16 name_;
@@ -652,6 +649,9 @@ struct ViewHostMsg_IDBDatabaseCreateObjectStore_Params {
// Whether the object store created should have a key generator.
bool auto_increment_;
+ // The transaction this is associated with.
+ int32 transaction_id_;
+
// The database the object store belongs to.
int32 idb_database_id_;
};
@@ -712,9 +712,6 @@ struct ViewHostMsg_IDBObjectStoreCreateIndex_Params {
ViewHostMsg_IDBObjectStoreCreateIndex_Params();
~ViewHostMsg_IDBObjectStoreCreateIndex_Params();
- // The response should have this id.
- int32 response_id_;
-
// The name of the index.
string16 name_;
@@ -724,6 +721,9 @@ struct ViewHostMsg_IDBObjectStoreCreateIndex_Params {
// Whether the index created has unique keys.
bool unique_;
+ // The transaction this is associated with.
+ int32 transaction_id_;
+
// The object store the index belongs to.
int32 idb_object_store_id_;
};