| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksSuccessCursorAdvance, | 222 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksSuccessCursorAdvance, |
| 223 IndexedDBMsg_CallbacksSuccessCursorContinue_Params) | 223 IndexedDBMsg_CallbacksSuccessCursorContinue_Params) |
| 224 | 224 |
| 225 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksSuccessCursorPrefetch, | 225 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksSuccessCursorPrefetch, |
| 226 IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params) | 226 IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params) |
| 227 | 227 |
| 228 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBDatabase, | 228 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBDatabase, |
| 229 int32 /* thread_id */, | 229 int32 /* thread_id */, |
| 230 int32 /* response_id */, | 230 int32 /* response_id */, |
| 231 int32 /* idb_database_id */) | 231 int32 /* idb_database_id */) |
| 232 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBDatabaseDeleted, |
| 233 int32 /* thread_id */, |
| 234 int32 /* response_id */, |
| 235 int32 /* idb_database_id */) |
| 232 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIndexedDBKey, | 236 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIndexedDBKey, |
| 233 int32 /* thread_id */, | 237 int32 /* thread_id */, |
| 234 int32 /* response_id */, | 238 int32 /* response_id */, |
| 235 content::IndexedDBKey /* indexed_db_key */) | 239 content::IndexedDBKey /* indexed_db_key */) |
| 236 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBTransaction, | 240 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessIDBTransaction, |
| 237 int32 /* thread_id */, | 241 int32 /* thread_id */, |
| 238 int32 /* response_id */, | 242 int32 /* response_id */, |
| 239 int32 /* idb_transaction_id */) | 243 int32 /* idb_transaction_id */) |
| 240 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessSerializedScriptValue, | 244 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessSerializedScriptValue, |
| 241 int32 /* thread_id */, | 245 int32 /* thread_id */, |
| 242 int32 /* response_id */, | 246 int32 /* response_id */, |
| 243 content::SerializedScriptValue /* value */) | 247 content::SerializedScriptValue /* value */) |
| 244 IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksSuccessSerializedScriptValueWithKey, | 248 IPC_MESSAGE_CONTROL5(IndexedDBMsg_CallbacksSuccessSerializedScriptValueWithKey, |
| 245 int32 /* thread_id */, | 249 int32 /* thread_id */, |
| 246 int32 /* response_id */, | 250 int32 /* response_id */, |
| 247 content::SerializedScriptValue /* value */, | 251 content::SerializedScriptValue /* value */, |
| 248 content::IndexedDBKey /* indexed_db_key */, | 252 content::IndexedDBKey /* indexed_db_key */, |
| 249 content::IndexedDBKeyPath /* indexed_db_keypath */) | 253 content::IndexedDBKeyPath /* indexed_db_keypath */) |
| 254 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessInteger, |
| 255 int32 /* thread_id */, |
| 256 int32 /* response_id */, |
| 257 int64 /* value */) |
| 258 IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksSuccessUndefined, |
| 259 int32 /* thread_id */, |
| 260 int32 /* response_id */) |
| 250 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessStringList, | 261 IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksSuccessStringList, |
| 251 int32 /* thread_id */, | 262 int32 /* thread_id */, |
| 252 int32 /* response_id */, | 263 int32 /* response_id */, |
| 253 std::vector<string16> /* dom_string_list */) | 264 std::vector<string16> /* dom_string_list */) |
| 254 IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksError, | 265 IPC_MESSAGE_CONTROL4(IndexedDBMsg_CallbacksError, |
| 255 int32 /* thread_id */, | 266 int32 /* thread_id */, |
| 256 int32 /* response_id */, | 267 int32 /* response_id */, |
| 257 int /* code */, | 268 int /* code */, |
| 258 string16 /* message */) | 269 string16 /* message */) |
| 259 IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksBlocked, | 270 IPC_MESSAGE_CONTROL2(IndexedDBMsg_CallbacksBlocked, |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 557 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
| 547 int32 /* idb_transaction_id */) | 558 int32 /* idb_transaction_id */) |
| 548 | 559 |
| 549 // IDBTransaction::DidCompleteTaskEvents() message. | 560 // IDBTransaction::DidCompleteTaskEvents() message. |
| 550 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 561 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
| 551 int32 /* idb_transaction_id */) | 562 int32 /* idb_transaction_id */) |
| 552 | 563 |
| 553 // WebIDBTransaction::~WebIDBTransaction() message. | 564 // WebIDBTransaction::~WebIDBTransaction() message. |
| 554 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 565 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
| 555 int32 /* idb_transaction_id */) | 566 int32 /* idb_transaction_id */) |
| OLD | NEW |