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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 2413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2424 ViewHostMsg_IDBObjectStoreOpenCursor_Params) | 2424 ViewHostMsg_IDBObjectStoreOpenCursor_Params) |
2425 | 2425 |
2426 // WebIDBObjectStore::~WebIDBObjectStore() message. | 2426 // WebIDBObjectStore::~WebIDBObjectStore() message. |
2427 IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBObjectStoreDestroyed, | 2427 IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBObjectStoreDestroyed, |
2428 int32 /* idb_object_store_id */) | 2428 int32 /* idb_object_store_id */) |
2429 | 2429 |
2430 // WebIDBDatabase::~WebIDBCursor() message. | 2430 // WebIDBDatabase::~WebIDBCursor() message. |
2431 IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBCursorDestroyed, | 2431 IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBCursorDestroyed, |
2432 int32 /* idb_cursor_id */) | 2432 int32 /* idb_cursor_id */) |
2433 | 2433 |
| 2434 // IDBTransaction::ObjectStore message. |
| 2435 IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_IDBTransactionObjectStore, |
| 2436 int32, /* transaction_id */ |
| 2437 string16, /* name */ |
| 2438 int32 /* object_store_id */) |
| 2439 |
2434 // WebIDBTransaction::~WebIDBTransaction() message. | 2440 // WebIDBTransaction::~WebIDBTransaction() message. |
2435 IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBTransactionDestroyed, | 2441 IPC_MESSAGE_CONTROL1(ViewHostMsg_IDBTransactionDestroyed, |
2436 int32 /* idb_index_id */) | 2442 int32 /* idb_transaction_id */) |
2437 | 2443 |
2438 // Get file size in bytes. Set result to -1 if failed to get the file size. | 2444 // Get file size in bytes. Set result to -1 if failed to get the file size. |
2439 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetFileSize, | 2445 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetFileSize, |
2440 FilePath /* path */, | 2446 FilePath /* path */, |
2441 int64 /* result */) | 2447 int64 /* result */) |
2442 | 2448 |
2443 // Get file modification time in seconds. Set result to 0 if failed to get the | 2449 // Get file modification time in seconds. Set result to 0 if failed to get the |
2444 // file modification time. | 2450 // file modification time. |
2445 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetFileModificationTime, | 2451 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetFileModificationTime, |
2446 FilePath /* path */, | 2452 FilePath /* path */, |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2683 | 2689 |
2684 //----------------------------------------------------------------------------- | 2690 //----------------------------------------------------------------------------- |
2685 // FileSystem API messages | 2691 // FileSystem API messages |
2686 // These are messages sent from the renderer to the browser process. | 2692 // These are messages sent from the renderer to the browser process. |
2687 | 2693 |
2688 // WebFrameClient::openFileSystem() message. | 2694 // WebFrameClient::openFileSystem() message. |
2689 IPC_MESSAGE_CONTROL1(ViewHostMsg_OpenFileSystemRequest, | 2695 IPC_MESSAGE_CONTROL1(ViewHostMsg_OpenFileSystemRequest, |
2690 ViewHostMsg_OpenFileSystemRequest_Params) | 2696 ViewHostMsg_OpenFileSystemRequest_Params) |
2691 | 2697 |
2692 IPC_END_MESSAGES(ViewHost) | 2698 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |