| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_key.h" | 9 #include "content/common/indexed_db_key.h" |
| 10 #include "content/common/indexed_db_param_traits.h" | 10 #include "content/common/indexed_db_param_traits.h" |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 int /* code */, | 156 int /* code */, |
| 157 string16 /* message */) | 157 string16 /* message */) |
| 158 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksBlocked, | 158 IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksBlocked, |
| 159 int32 /* response_id */) | 159 int32 /* response_id */) |
| 160 | 160 |
| 161 // IDBTransactionCallback message handlers. | 161 // IDBTransactionCallback message handlers. |
| 162 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksAbort, | 162 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksAbort, |
| 163 int32 /* transaction_id */) | 163 int32 /* transaction_id */) |
| 164 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksComplete, | 164 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksComplete, |
| 165 int32 /* transaction_id */) | 165 int32 /* transaction_id */) |
| 166 IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksTimeout, | |
| 167 int32 /* transaction_id */) | |
| 168 | 166 |
| 169 IPC_MESSAGE_CONTROL2(IndexedDBMsg_DatabaseCallbacksVersionChange, | 167 IPC_MESSAGE_CONTROL2(IndexedDBMsg_DatabaseCallbacksVersionChange, |
| 170 int32, /* database_id */ | 168 int32, /* database_id */ |
| 171 string16) /* new_version */ | 169 string16) /* new_version */ |
| 172 | 170 |
| 173 // Indexed DB messages sent from the renderer to the browser. | 171 // Indexed DB messages sent from the renderer to the browser. |
| 174 | 172 |
| 175 // WebIDBCursor::direction() message. | 173 // WebIDBCursor::direction() message. |
| 176 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_CursorDirection, | 174 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_CursorDirection, |
| 177 int32, /* idb_cursor_id */ | 175 int32, /* idb_cursor_id */ |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 422 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
| 425 int32 /* idb_transaction_id */) | 423 int32 /* idb_transaction_id */) |
| 426 | 424 |
| 427 // IDBTransaction::DidCompleteTaskEvents() message. | 425 // IDBTransaction::DidCompleteTaskEvents() message. |
| 428 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 426 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
| 429 int32 /* idb_transaction_id */) | 427 int32 /* idb_transaction_id */) |
| 430 | 428 |
| 431 // WebIDBTransaction::~WebIDBTransaction() message. | 429 // WebIDBTransaction::~WebIDBTransaction() message. |
| 432 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 430 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
| 433 int32 /* idb_transaction_id */) | 431 int32 /* idb_transaction_id */) |
| OLD | NEW |