OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Message definition file, included multiple times, hence no include guard. | 5 // Message definition file, included multiple times, hence no include guard. |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 // WebIDBDatabase::observe() message. | 187 // WebIDBDatabase::observe() message. |
188 IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseObserve_Params) | 188 IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabaseObserve_Params) |
189 // The database the observer observers on. | 189 // The database the observer observers on. |
190 IPC_STRUCT_MEMBER(int32_t, ipc_database_id) | 190 IPC_STRUCT_MEMBER(int32_t, ipc_database_id) |
191 // The transaction it's associated with. | 191 // The transaction it's associated with. |
192 IPC_STRUCT_MEMBER(int32_t, transaction_id) | 192 IPC_STRUCT_MEMBER(int32_t, transaction_id) |
193 IPC_STRUCT_MEMBER(int32_t, observer_id) | 193 IPC_STRUCT_MEMBER(int32_t, observer_id) |
194 IPC_STRUCT_MEMBER(bool, include_transaction) | 194 IPC_STRUCT_MEMBER(bool, include_transaction) |
195 IPC_STRUCT_MEMBER(bool, no_records) | 195 IPC_STRUCT_MEMBER(bool, no_records) |
196 IPC_STRUCT_MEMBER(bool, values) | 196 IPC_STRUCT_MEMBER(bool, values) |
197 IPC_STRUCT_MEMBER(unsigned short, operation_types) | 197 IPC_STRUCT_MEMBER(uint16_t, operation_types) |
198 IPC_STRUCT_END() | 198 IPC_STRUCT_END() |
199 | 199 |
200 // Used to set a value in an object store. | 200 // Used to set a value in an object store. |
201 IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabasePut_Params) | 201 IPC_STRUCT_BEGIN(IndexedDBHostMsg_DatabasePut_Params) |
202 // The id any response should contain. | 202 // The id any response should contain. |
203 IPC_STRUCT_MEMBER(int32_t, ipc_thread_id) | 203 IPC_STRUCT_MEMBER(int32_t, ipc_thread_id) |
204 IPC_STRUCT_MEMBER(int32_t, ipc_callbacks_id) | 204 IPC_STRUCT_MEMBER(int32_t, ipc_callbacks_id) |
205 // The database the object store belongs to. | 205 // The database the object store belongs to. |
206 IPC_STRUCT_MEMBER(int32_t, ipc_database_id) | 206 IPC_STRUCT_MEMBER(int32_t, ipc_database_id) |
207 // The transaction it's associated with. | 207 // The transaction it's associated with. |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 int64_t) /* transaction_id */ | 619 int64_t) /* transaction_id */ |
620 | 620 |
621 // WebIDBDatabase::commit() message. | 621 // WebIDBDatabase::commit() message. |
622 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, | 622 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, |
623 int32_t, /* ipc_database_id */ | 623 int32_t, /* ipc_database_id */ |
624 int64_t) /* transaction_id */ | 624 int64_t) /* transaction_id */ |
625 | 625 |
626 // WebIDBDatabase::~WebIDBCursor() message. | 626 // WebIDBDatabase::~WebIDBCursor() message. |
627 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, | 627 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, |
628 int32_t /* ipc_cursor_id */) | 628 int32_t /* ipc_cursor_id */) |
OLD | NEW |