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 <vector> | 7 #include <vector> |
8 | 8 |
9 #include "content/common/indexed_db/indexed_db_key.h" | 9 #include "content/common/indexed_db/indexed_db_key.h" |
10 #include "content/common/indexed_db/indexed_db_key_path.h" | 10 #include "content/common/indexed_db/indexed_db_key_path.h" |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessSerializedScriptValue, | 240 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessSerializedScriptValue, |
241 int32 /* thread_id */, | 241 int32 /* thread_id */, |
242 int32 /* response_id */, | 242 int32 /* response_id */, |
243 content::SerializedScriptValue /* value */) | 243 content::SerializedScriptValue /* value */) |
244 IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksSuccessSerializedScriptValueWithKey, | 244 IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksSuccessSerializedScriptValueWithKey, |
245 int32 /* thread_id */, | 245 int32 /* thread_id */, |
246 int32 /* response_id */, | 246 int32 /* response_id */, |
247 content::SerializedScriptValue /* value */, | 247 content::SerializedScriptValue /* value */, |
248 content::IndexedDBKey /* indexed_db_key */, | 248 content::IndexedDBKey /* indexed_db_key */, |
249 content::IndexedDBKeyPath /* indexed_db_keypath */) | 249 content::IndexedDBKeyPath /* indexed_db_keypath */) |
| 250 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessInteger, |
| 251 int32 /* thread_id */, |
| 252 int32 /* response_id */, |
| 253 int64 /* value */) |
| 254 IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksSuccessUndefined, |
| 255 int32 /* thread_id */, |
| 256 int32 /* response_id */) |
250 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessStringList, | 257 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessStringList, |
251 int32 /* thread_id */, | 258 int32 /* thread_id */, |
252 int32 /* response_id */, | 259 int32 /* response_id */, |
253 std::vector<string16> /* dom_string_list */) | 260 std::vector<string16> /* dom_string_list */) |
254 IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksError, | 261 IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksError, |
255 int32 /* thread_id */, | 262 int32 /* thread_id */, |
256 int32 /* response_id */, | 263 int32 /* response_id */, |
257 int /* code */, | 264 int /* code */, |
258 string16 /* message */) | 265 string16 /* message */) |
259 IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksBlocked, | 266 IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksBlocked, |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 549 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
543 int32 /* idb_transaction_id */) | 550 int32 /* idb_transaction_id */) |
544 | 551 |
545 // IDBTransaction::DidCompleteTaskEvents() message. | 552 // IDBTransaction::DidCompleteTaskEvents() message. |
546 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 553 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
547 int32 /* idb_transaction_id */) | 554 int32 /* idb_transaction_id */) |
548 | 555 |
549 // WebIDBTransaction::~WebIDBTransaction() message. | 556 // WebIDBTransaction::~WebIDBTransaction() message. |
550 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 557 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
551 int32 /* idb_transaction_id */) | 558 int32 /* idb_transaction_id */) |
OLD | NEW |