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

Side by Side Diff: content/common/indexed_db/indexed_db_messages.h

Issue 2125213002: [IndexedDB] Propogating changes to observers : Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lifetime
Patch Set: Minor typecasting Created 4 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 unified diff | Download patch
OLDNEW
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
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
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 */)
OLDNEW
« no previous file with comments | « content/child/indexed_db/webidbdatabase_impl.cc ('k') | third_party/WebKit/LayoutTests/storage/indexeddb/observer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698