OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 | 835 |
836 // This message is used when the object list does not contain a bitmap. | 836 // This message is used when the object list does not contain a bitmap. |
837 IPC_MESSAGE_CONTROL1(ViewHostMsg_ClipboardWriteObjectsAsync, | 837 IPC_MESSAGE_CONTROL1(ViewHostMsg_ClipboardWriteObjectsAsync, |
838 Clipboard::ObjectMap /* objects */) | 838 Clipboard::ObjectMap /* objects */) |
839 // This message is used when the object list contains a bitmap. | 839 // This message is used when the object list contains a bitmap. |
840 // It is synchronized so that the renderer knows when it is safe to | 840 // It is synchronized so that the renderer knows when it is safe to |
841 // free the shared memory used to transfer the bitmap. | 841 // free the shared memory used to transfer the bitmap. |
842 IPC_SYNC_MESSAGE_CONTROL1_0(ViewHostMsg_ClipboardWriteObjectsSync, | 842 IPC_SYNC_MESSAGE_CONTROL1_0(ViewHostMsg_ClipboardWriteObjectsSync, |
843 Clipboard::ObjectMap /* objects */) | 843 Clipboard::ObjectMap /* objects */) |
844 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_ClipboardIsFormatAvailable, | 844 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_ClipboardIsFormatAvailable, |
845 int /* format */, | 845 std::string /* format */, |
846 bool /* result */) | 846 bool /* result */) |
847 IPC_SYNC_MESSAGE_CONTROL0_1(ViewHostMsg_ClipboardReadText, | 847 IPC_SYNC_MESSAGE_CONTROL0_1(ViewHostMsg_ClipboardReadText, |
848 string16 /* result */) | 848 string16 /* result */) |
849 IPC_SYNC_MESSAGE_CONTROL0_1(ViewHostMsg_ClipboardReadAsciiText, | 849 IPC_SYNC_MESSAGE_CONTROL0_1(ViewHostMsg_ClipboardReadAsciiText, |
850 std::string /* result */) | 850 std::string /* result */) |
851 IPC_SYNC_MESSAGE_CONTROL0_2(ViewHostMsg_ClipboardReadHTML, | 851 IPC_SYNC_MESSAGE_CONTROL0_2(ViewHostMsg_ClipboardReadHTML, |
852 string16 /* markup */, | 852 string16 /* markup */, |
853 GURL /* url */) | 853 GURL /* url */) |
854 | 854 |
855 #if defined(OS_WIN) | 855 #if defined(OS_WIN) |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1208 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateDedicatedWorker, | 1208 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateDedicatedWorker, |
1209 GURL /* url */, | 1209 GURL /* url */, |
1210 int /* route_id */) | 1210 int /* route_id */) |
1211 | 1211 |
1212 // Wraps an IPC message that's destined to the worker on the renderer->browser | 1212 // Wraps an IPC message that's destined to the worker on the renderer->browser |
1213 // hop. | 1213 // hop. |
1214 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, | 1214 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, |
1215 IPC::Message /* message */) | 1215 IPC::Message /* message */) |
1216 | 1216 |
1217 IPC_END_MESSAGES(ViewHost) | 1217 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |