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 // Multiply-included message file, so no include guard. | 5 // Multiply-included message file, so no include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/shared_memory.h" | 10 #include "base/shared_memory.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 IPC_SYNC_MESSAGE_CONTROL1_4(ClipboardHostMsg_ReadHTML, | 48 IPC_SYNC_MESSAGE_CONTROL1_4(ClipboardHostMsg_ReadHTML, |
49 ui::Clipboard::Buffer /* buffer */, | 49 ui::Clipboard::Buffer /* buffer */, |
50 string16 /* markup */, | 50 string16 /* markup */, |
51 GURL /* url */, | 51 GURL /* url */, |
52 uint32 /* fragment start */, | 52 uint32 /* fragment start */, |
53 uint32 /* fragment end */) | 53 uint32 /* fragment end */) |
54 IPC_SYNC_MESSAGE_CONTROL1_2(ClipboardHostMsg_ReadImage, | 54 IPC_SYNC_MESSAGE_CONTROL1_2(ClipboardHostMsg_ReadImage, |
55 ui::Clipboard::Buffer /* buffer */, | 55 ui::Clipboard::Buffer /* buffer */, |
56 base::SharedMemoryHandle /* PNG-encoded image */, | 56 base::SharedMemoryHandle /* PNG-encoded image */, |
57 uint32 /* image size */) | 57 uint32 /* image size */) |
| 58 IPC_SYNC_MESSAGE_CONTROL2_1(ClipboardHostMsg_ReadCustomData, |
| 59 ui::Clipboard::Buffer /* buffer */, |
| 60 string16 /* type */, |
| 61 string16 /* result */) |
58 | 62 |
59 #if defined(OS_MACOSX) | 63 #if defined(OS_MACOSX) |
60 IPC_MESSAGE_CONTROL1(ClipboardHostMsg_FindPboardWriteStringAsync, | 64 IPC_MESSAGE_CONTROL1(ClipboardHostMsg_FindPboardWriteStringAsync, |
61 string16 /* text */) | 65 string16 /* text */) |
62 #endif | 66 #endif |
OLD | NEW |