| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 | 370 |
| 371 // WebIDBDatabase::~WebIDBDatabase() message. | 371 // WebIDBDatabase::~WebIDBDatabase() message. |
| 372 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseDestroyed, | 372 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseDestroyed, |
| 373 int32 /* idb_database_id */) | 373 int32 /* idb_database_id */) |
| 374 | 374 |
| 375 // WebIDBIndex::name() message. | 375 // WebIDBIndex::name() message. |
| 376 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexName, | 376 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexName, |
| 377 int32, /* idb_index_id */ | 377 int32, /* idb_index_id */ |
| 378 string16 /* name */) | 378 string16 /* name */) |
| 379 | 379 |
| 380 // WebIDBIndex::storeName() message. | |
| 381 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexStoreName, | |
| 382 int32, /* idb_index_id */ | |
| 383 string16 /* store_name */) | |
| 384 | |
| 385 // WebIDBIndex::keyPath() message. | 380 // WebIDBIndex::keyPath() message. |
| 386 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexKeyPath, | 381 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexKeyPath, |
| 387 int32, /* idb_index_id */ | 382 int32, /* idb_index_id */ |
| 388 content::IndexedDBKeyPath /* key_path */) | 383 content::IndexedDBKeyPath /* key_path */) |
| 389 | 384 |
| 390 // WebIDBIndex::unique() message. | 385 // WebIDBIndex::unique() message. |
| 391 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexUnique, | 386 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_IndexUnique, |
| 392 int32, /* idb_index_id */ | 387 int32, /* idb_index_id */ |
| 393 bool /* unique */) | 388 bool /* unique */) |
| 394 | 389 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 538 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
| 544 int32 /* idb_transaction_id */) | 539 int32 /* idb_transaction_id */) |
| 545 | 540 |
| 546 // IDBTransaction::DidCompleteTaskEvents() message. | 541 // IDBTransaction::DidCompleteTaskEvents() message. |
| 547 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 542 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
| 548 int32 /* idb_transaction_id */) | 543 int32 /* idb_transaction_id */) |
| 549 | 544 |
| 550 // WebIDBTransaction::~WebIDBTransaction() message. | 545 // WebIDBTransaction::~WebIDBTransaction() message. |
| 551 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 546 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
| 552 int32 /* idb_transaction_id */) | 547 int32 /* idb_transaction_id */) |
| OLD | NEW |