| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 12 matching lines...) Expand all Loading... |
| 23 // Used to open an indexed database. | 23 // Used to open an indexed database. |
| 24 IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryOpen_Params) | 24 IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryOpen_Params) |
| 25 // The routing ID of the view initiating the open. | 25 // The routing ID of the view initiating the open. |
| 26 IPC_STRUCT_MEMBER(int32, routing_id) | 26 IPC_STRUCT_MEMBER(int32, routing_id) |
| 27 // The response should have this id. | 27 // The response should have this id. |
| 28 IPC_STRUCT_MEMBER(int32, response_id) | 28 IPC_STRUCT_MEMBER(int32, response_id) |
| 29 // The origin doing the initiating. | 29 // The origin doing the initiating. |
| 30 IPC_STRUCT_MEMBER(string16, origin) | 30 IPC_STRUCT_MEMBER(string16, origin) |
| 31 // The name of the database. | 31 // The name of the database. |
| 32 IPC_STRUCT_MEMBER(string16, name) | 32 IPC_STRUCT_MEMBER(string16, name) |
| 33 // The maximum size of the database. | |
| 34 IPC_STRUCT_MEMBER(uint64, maximum_size) | |
| 35 IPC_STRUCT_END() | 33 IPC_STRUCT_END() |
| 36 | 34 |
| 37 // Used to delete an indexed database. | 35 // Used to delete an indexed database. |
| 38 IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryDeleteDatabase_Params) | 36 IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryDeleteDatabase_Params) |
| 39 // The routing ID of the view initiating the deletion. | 37 // The routing ID of the view initiating the deletion. |
| 40 IPC_STRUCT_MEMBER(int32, routing_id) | 38 IPC_STRUCT_MEMBER(int32, routing_id) |
| 41 // The response should have this id. | 39 // The response should have this id. |
| 42 IPC_STRUCT_MEMBER(int32, response_id) | 40 IPC_STRUCT_MEMBER(int32, response_id) |
| 43 // The origin doing the initiating. | 41 // The origin doing the initiating. |
| 44 IPC_STRUCT_MEMBER(string16, origin) | 42 IPC_STRUCT_MEMBER(string16, origin) |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 415 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
| 418 int32 /* idb_transaction_id */) | 416 int32 /* idb_transaction_id */) |
| 419 | 417 |
| 420 // IDBTransaction::DidCompleteTaskEvents() message. | 418 // IDBTransaction::DidCompleteTaskEvents() message. |
| 421 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 419 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
| 422 int32 /* idb_transaction_id */) | 420 int32 /* idb_transaction_id */) |
| 423 | 421 |
| 424 // WebIDBTransaction::~WebIDBTransaction() message. | 422 // WebIDBTransaction::~WebIDBTransaction() message. |
| 425 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 423 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
| 426 int32 /* idb_transaction_id */) | 424 int32 /* idb_transaction_id */) |
| OLD | NEW |