OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/common/indexed_db_key.h" | 9 #include "content/common/indexed_db_key.h" |
10 #include "chrome/common/indexed_db_param_traits.h" | 10 #include "content/common/indexed_db_param_traits.h" |
11 #include "chrome/common/serialized_script_value.h" | 11 #include "content/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 |
21 IPC_ENUM_TRAITS(WebKit::WebIDBObjectStore::PutMode) | 21 IPC_ENUM_TRAITS(WebKit::WebIDBObjectStore::PutMode) |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, | 424 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, |
425 int32 /* idb_transaction_id */) | 425 int32 /* idb_transaction_id */) |
426 | 426 |
427 // IDBTransaction::DidCompleteTaskEvents() message. | 427 // IDBTransaction::DidCompleteTaskEvents() message. |
428 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, | 428 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, |
429 int32 /* idb_transaction_id */) | 429 int32 /* idb_transaction_id */) |
430 | 430 |
431 // WebIDBTransaction::~WebIDBTransaction() message. | 431 // WebIDBTransaction::~WebIDBTransaction() message. |
432 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, | 432 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, |
433 int32 /* idb_transaction_id */) | 433 int32 /* idb_transaction_id */) |
OLD | NEW |