Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: content/common/indexed_db_messages.h

Issue 8743001: IndexedDB: Add support for IDBIndex multientry flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename multientry->multiEntry Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/indexed_db_messages.h
diff --git a/content/common/indexed_db_messages.h b/content/common/indexed_db_messages.h
index 118106ecb84cd26cbb5c8e49aecd87ccb19421dd..122f580b0843320337b9bb49e2507332556d6d53 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, multiEntry)
jam 2011/12/02 20:36:04 multi_entry
// The transaction this is associated with.
IPC_STRUCT_MEMBER(int32, transaction_id)
// The object store the index belongs to.

Powered by Google App Engine
This is Rietveld 408576698