| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 | 431 |
| 432 // WebIDBObjectStore::get() message. | 432 // WebIDBObjectStore::get() message. |
| 433 IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreGet, | 433 IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreGet, |
| 434 int32, /* idb_object_store_id */ | 434 int32, /* idb_object_store_id */ |
| 435 int32, /* thread_id */ | 435 int32, /* thread_id */ |
| 436 int32, /* response_id */ | 436 int32, /* response_id */ |
| 437 content::IndexedDBKeyRange, /* key_range */ | 437 content::IndexedDBKeyRange, /* key_range */ |
| 438 int32, /* transaction_id */ | 438 int32, /* transaction_id */ |
| 439 WebKit::WebExceptionCode /* ec */) | 439 WebKit::WebExceptionCode /* ec */) |
| 440 | 440 |
| 441 // WebIDBObjectStore::put() message. | 441 // WebIDBObjectStore::putWithIndexKeys() message. |
| 442 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_ObjectStorePut, | 442 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_ObjectStorePut, |
| 443 IndexedDBHostMsg_ObjectStorePut_Params, | 443 IndexedDBHostMsg_ObjectStorePut_Params, |
| 444 WebKit::WebExceptionCode /* ec */) | 444 WebKit::WebExceptionCode /* ec */) |
| 445 | 445 |
| 446 // WebIDBObjectStore::delete() message. | 446 // WebIDBObjectStore::delete() message. |
| 447 IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreDelete, | 447 IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreDelete, |
| 448 int32, /* idb_object_store_id */ | 448 int32, /* idb_object_store_id */ |
| 449 int32, /* thread_id */ | 449 int32, /* thread_id */ |
| 450 int32, /* response_id */ | 450 int32, /* response_id */ |
| 451 content::IndexedDBKeyRange, /* key_range */ | 451 content::IndexedDBKeyRange, /* key_range */ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 518 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
| 519 int32 /* idb_transaction_id */) | 519 int32 /* idb_transaction_id */) |
| 520 | 520 |
| 521 // IDBTransaction::DidCompleteTaskEvents() message. | 521 // IDBTransaction::DidCompleteTaskEvents() message. |
| 522 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 522 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
| 523 int32 /* idb_transaction_id */) | 523 int32 /* idb_transaction_id */) |
| 524 | 524 |
| 525 // WebIDBTransaction::~WebIDBTransaction() message. | 525 // WebIDBTransaction::~WebIDBTransaction() message. |
| 526 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 526 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
| 527 int32 /* idb_transaction_id */) | 527 int32 /* idb_transaction_id */) |
| OLD | NEW |