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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 PP_Instance /* instance */, | 692 PP_Instance /* instance */, |
693 PP_Time /* t */, | 693 PP_Time /* t */, |
694 double /* offset */) | 694 double /* offset */) |
695 | 695 |
696 // PPB_Flash_Clipboard. | 696 // PPB_Flash_Clipboard. |
697 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, | 697 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, |
698 PP_Instance /* instance */, | 698 PP_Instance /* instance */, |
699 int /* clipboard_type */, | 699 int /* clipboard_type */, |
700 int /* format */, | 700 int /* format */, |
701 bool /* result */) | 701 bool /* result */) |
702 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, | 702 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData, |
703 PP_Instance /* instance */, | 703 PP_Instance /* instance */, |
704 int /* clipboard_type */, | 704 int /* clipboard_type */, |
| 705 int /* format */, |
705 ppapi::proxy::SerializedVar /* result */) | 706 ppapi::proxy::SerializedVar /* result */) |
706 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, | 707 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlashClipboard_WriteData, |
707 PP_Instance /* instance */, | 708 PP_Instance /* instance */, |
708 int /* clipboard_type */, | 709 int /* clipboard_type */, |
709 ppapi::proxy::SerializedVar /* text */) | 710 std::vector<ppapi::proxy::SerializedVar> /* formats */, |
| 711 std::vector<ppapi::proxy::SerializedVar> /* data */) |
710 | 712 |
711 // PPB_Flash_File_FileRef. | 713 // PPB_Flash_File_FileRef. |
712 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, | 714 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, |
713 ppapi::HostResource /* file_ref */, | 715 ppapi::HostResource /* file_ref */, |
714 int32_t /* mode */, | 716 int32_t /* mode */, |
715 IPC::PlatformFileForTransit /* file_handle */, | 717 IPC::PlatformFileForTransit /* file_handle */, |
716 int32_t /* result */) | 718 int32_t /* result */) |
717 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, | 719 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, |
718 ppapi::HostResource /* file_ref */, | 720 ppapi::HostResource /* file_ref */, |
719 PP_FileInfo /* info */, | 721 PP_FileInfo /* info */, |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1137 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1139 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1138 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1140 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1139 ppapi::HostResource /* video_decoder */, | 1141 ppapi::HostResource /* video_decoder */, |
1140 int32_t /* picture buffer id */) | 1142 int32_t /* picture buffer id */) |
1141 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1142 ppapi::HostResource /* video_decoder */) | 1144 ppapi::HostResource /* video_decoder */) |
1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1145 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1144 ppapi::HostResource /* video_decoder */) | 1146 ppapi::HostResource /* video_decoder */) |
1145 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1147 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1146 ppapi::HostResource /* video_decoder */) | 1148 ppapi::HostResource /* video_decoder */) |
OLD | NEW |