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

Unified Diff: content/common/indexed_db/indexed_db_messages.h

Issue 10759012: Chromium side of plumbing for passing renderer-generated keys through IPC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 months 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/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 4c80eef0283dbc7dd80de0df1c701125862d9939..59688be66a69d722443244ebf967731cc90800d1 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -110,6 +110,11 @@ IPC_STRUCT_BEGIN(IndexedDBHostMsg_ObjectStorePut_Params)
IPC_STRUCT_MEMBER(content::IndexedDBKey, key)
// Whether this is an add or a put.
IPC_STRUCT_MEMBER(WebKit::WebIDBObjectStore::PutMode, put_mode)
+ // the names of the indexes used below
jsbell 2012/07/10 17:46:54 Capitalize/period.
alecflett 2012/07/10 21:19:07 Done.
+ IPC_STRUCT_MEMBER(std::vector<string16>, index_names)
+ // the keys for each index
jsbell 2012/07/10 17:46:54 Capitalize/period. Also may want to clarify that t
alecflett 2012/07/10 21:19:07 Done.
+ IPC_STRUCT_MEMBER(std::vector<std::vector<content::IndexedDBKey> >,
+ index_keys)
// The transaction it's associated with.
IPC_STRUCT_MEMBER(int, transaction_id)
IPC_STRUCT_END()

Powered by Google App Engine
This is Rietveld 408576698