summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
authorjsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-02 20:53:30 +0000
committerjsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-02 20:53:30 +0000
commit716b7785e16a2049525e406b17d75776cc1911ee (patch)
tree93c9112b5c2c54955b82c856c687f2a501840ab2 /content/common
parent78637b26b589b5e44aac9be769277e21a6370738 (diff)
downloadchromium_src-716b7785e16a2049525e406b17d75776cc1911ee.zip
chromium_src-716b7785e16a2049525e406b17d75776cc1911ee.tar.gz
chromium_src-716b7785e16a2049525e406b17d75776cc1911ee.tar.bz2
IndexedDB: Add support for IDBIndex multientry flag
WebKit side (which needs to land first) is: https://bugs.webkit.org/show_bug.cgi?id=73232 which landed as WebKit r101602 BUG=103578 TEST= Review URL: http://codereview.chromium.org/8743001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112777 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r--content/common/indexed_db_messages.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/common/indexed_db_messages.h b/content/common/indexed_db_messages.h
index 31a0974..07784f3 100644
--- a/content/common/indexed_db_messages.h
+++ b/content/common/indexed_db_messages.h
@@ -106,6 +106,8 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_ObjectStoreCreateIndex_Params)
IPC_STRUCT_MEMBER(NullableString16, key_path)
// Whether the index created has unique keys.
IPC_STRUCT_MEMBER(bool, unique)
+ // Whether the index created produces keys for each array entry.
+ IPC_STRUCT_MEMBER(bool, multi_entry)
// The transaction this is associated with.
IPC_STRUCT_MEMBER(int32, transaction_id)
// The object store the index belongs to.