| 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 <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "content/common/indexed_db/indexed_db_key.h" | 10 #include "content/common/indexed_db/indexed_db_key.h" |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 IndexedDBHostMsg_FactoryGetDatabaseNames_Params) | 415 IndexedDBHostMsg_FactoryGetDatabaseNames_Params) |
| 416 | 416 |
| 417 // WebIDBFactory::open() message. | 417 // WebIDBFactory::open() message. |
| 418 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryOpen, | 418 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryOpen, |
| 419 IndexedDBHostMsg_FactoryOpen_Params) | 419 IndexedDBHostMsg_FactoryOpen_Params) |
| 420 | 420 |
| 421 // WebIDBFactory::deleteDatabase() message. | 421 // WebIDBFactory::deleteDatabase() message. |
| 422 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryDeleteDatabase, | 422 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_FactoryDeleteDatabase, |
| 423 IndexedDBHostMsg_FactoryDeleteDatabase_Params) | 423 IndexedDBHostMsg_FactoryDeleteDatabase_Params) |
| 424 | 424 |
| 425 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_AckReceivedBlobs, |
| 426 std::vector<std::string>) /* uuids */ |
| 427 |
| 425 // WebIDBDatabase::createObjectStore() message. | 428 // WebIDBDatabase::createObjectStore() message. |
| 426 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseCreateObjectStore, | 429 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseCreateObjectStore, |
| 427 IndexedDBHostMsg_DatabaseCreateObjectStore_Params) | 430 IndexedDBHostMsg_DatabaseCreateObjectStore_Params) |
| 428 | 431 |
| 429 // WebIDBDatabase::deleteObjectStore() message. | 432 // WebIDBDatabase::deleteObjectStore() message. |
| 430 IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_DatabaseDeleteObjectStore, | 433 IPC_MESSAGE_CONTROL3(IndexedDBHostMsg_DatabaseDeleteObjectStore, |
| 431 int32, /* ipc_database_id */ | 434 int32, /* ipc_database_id */ |
| 432 int64, /* transaction_id */ | 435 int64, /* transaction_id */ |
| 433 int64) /* object_store_id */ | 436 int64) /* object_store_id */ |
| 434 | 437 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 int64) /* transaction_id */ | 503 int64) /* transaction_id */ |
| 501 | 504 |
| 502 // WebIDBDatabase::commit() message. | 505 // WebIDBDatabase::commit() message. |
| 503 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, | 506 IPC_MESSAGE_CONTROL2(IndexedDBHostMsg_DatabaseCommit, |
| 504 int32, /* ipc_database_id */ | 507 int32, /* ipc_database_id */ |
| 505 int64) /* transaction_id */ | 508 int64) /* transaction_id */ |
| 506 | 509 |
| 507 // WebIDBDatabase::~WebIDBCursor() message. | 510 // WebIDBDatabase::~WebIDBCursor() message. |
| 508 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, | 511 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_CursorDestroyed, |
| 509 int32 /* ipc_cursor_id */) | 512 int32 /* ipc_cursor_id */) |
| OLD | NEW |