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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 int32, /* transaction_id */ | 502 int32, /* transaction_id */ |
503 string16, /* name */ | 503 string16, /* name */ |
504 int32, /* object_store_id */ | 504 int32, /* object_store_id */ |
505 WebKit::WebExceptionCode /* ec */) | 505 WebKit::WebExceptionCode /* ec */) |
506 | 506 |
507 // WebIDBTransaction::mode() message. | 507 // WebIDBTransaction::mode() message. |
508 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_TransactionMode, | 508 IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_TransactionMode, |
509 int32, /* idb_transaction_id */ | 509 int32, /* idb_transaction_id */ |
510 int /* mode */) | 510 int /* mode */) |
511 | 511 |
| 512 // WebIDBTransaction::commit() message. |
| 513 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionCommit, |
| 514 int32 /* idb_transaction_id */) |
| 515 |
512 // WebIDBTransaction::abort() message. | 516 // WebIDBTransaction::abort() message. |
513 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 517 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
514 int32 /* idb_transaction_id */) | 518 int32 /* idb_transaction_id */) |
515 | 519 |
516 // IDBTransaction::DidCompleteTaskEvents() message. | 520 // IDBTransaction::DidCompleteTaskEvents() message. |
517 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 521 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
518 int32 /* idb_transaction_id */) | 522 int32 /* idb_transaction_id */) |
519 | 523 |
520 // WebIDBTransaction::~WebIDBTransaction() message. | 524 // WebIDBTransaction::~WebIDBTransaction() message. |
521 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 525 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
522 int32 /* idb_transaction_id */) | 526 int32 /* idb_transaction_id */) |
OLD | NEW |