OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 PP_Instance /* instance */, | 727 PP_Instance /* instance */, |
728 PP_Rect /* rect */, | 728 PP_Rect /* rect */, |
729 PP_Bool /* result */) | 729 PP_Bool /* result */) |
730 | 730 |
731 // PPB_Flash_Clipboard. | 731 // PPB_Flash_Clipboard. |
732 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, | 732 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, |
733 PP_Instance /* instance */, | 733 PP_Instance /* instance */, |
734 int /* clipboard_type */, | 734 int /* clipboard_type */, |
735 int /* format */, | 735 int /* format */, |
736 bool /* result */) | 736 bool /* result */) |
737 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, | 737 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData, |
738 PP_Instance /* instance */, | 738 PP_Instance /* instance */, |
739 int /* clipboard_type */, | 739 int /* clipboard_type */, |
| 740 int /* format */, |
740 ppapi::proxy::SerializedVar /* result */) | 741 ppapi::proxy::SerializedVar /* result */) |
741 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, | 742 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlashClipboard_WriteData, |
742 PP_Instance /* instance */, | 743 PP_Instance /* instance */, |
743 int /* clipboard_type */, | 744 int /* clipboard_type */, |
744 ppapi::proxy::SerializedVar /* text */) | 745 std::vector<int> /* formats */, |
| 746 std::vector<ppapi::proxy::SerializedVar> /* data */) |
745 | 747 |
746 // PPB_Flash_File_FileRef. | 748 // PPB_Flash_File_FileRef. |
747 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, | 749 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, |
748 ppapi::HostResource /* file_ref */, | 750 ppapi::HostResource /* file_ref */, |
749 int32_t /* mode */, | 751 int32_t /* mode */, |
750 IPC::PlatformFileForTransit /* file_handle */, | 752 IPC::PlatformFileForTransit /* file_handle */, |
751 int32_t /* result */) | 753 int32_t /* result */) |
752 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, | 754 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, |
753 ppapi::HostResource /* file_ref */, | 755 ppapi::HostResource /* file_ref */, |
754 PP_FileInfo /* info */, | 756 PP_FileInfo /* info */, |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1208 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1210 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1209 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1211 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1210 ppapi::HostResource /* video_decoder */, | 1212 ppapi::HostResource /* video_decoder */, |
1211 int32_t /* picture buffer id */) | 1213 int32_t /* picture buffer id */) |
1212 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1214 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1213 ppapi::HostResource /* video_decoder */) | 1215 ppapi::HostResource /* video_decoder */) |
1214 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1216 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1215 ppapi::HostResource /* video_decoder */) | 1217 ppapi::HostResource /* video_decoder */) |
1216 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1218 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1217 ppapi::HostResource /* video_decoder */) | 1219 ppapi::HostResource /* video_decoder */) |
OLD | NEW |