Chromium Code Reviews| 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() |