| 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/indexed_db_key.h" |
| 10 #include "content/common/indexed_db_param_traits.h" | 10 #include "content/common/indexed_db/indexed_db_param_traits.h" |
| 11 #include "content/public/common/serialized_script_value.h" | 11 #include "content/public/common/serialized_script_value.h" |
| 12 #include "ipc/ipc_message_macros.h" | 12 #include "ipc/ipc_message_macros.h" |
| 13 #include "ipc/ipc_param_traits.h" | 13 #include "ipc/ipc_param_traits.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h" |
| 16 | 16 |
| 17 #define IPC_MESSAGE_START IndexedDBMsgStart | 17 #define IPC_MESSAGE_START IndexedDBMsgStart |
| 18 | 18 |
| 19 // Argument structures used in messages | 19 // Argument structures used in messages |
| 20 | 20 |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 540 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
| 541 int32 /* idb_transaction_id */) | 541 int32 /* idb_transaction_id */) |
| 542 | 542 |
| 543 // IDBTransaction::DidCompleteTaskEvents() message. | 543 // IDBTransaction::DidCompleteTaskEvents() message. |
| 544 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 544 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
| 545 int32 /* idb_transaction_id */) | 545 int32 /* idb_transaction_id */) |
| 546 | 546 |
| 547 // WebIDBTransaction::~WebIDBTransaction() message. | 547 // WebIDBTransaction::~WebIDBTransaction() message. |
| 548 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 548 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
| 549 int32 /* idb_transaction_id */) | 549 int32 /* idb_transaction_id */) |
| OLD | NEW |