| 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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, |
| 703 PP_Instance /* instance */, | 703 PP_Instance /* instance */, |
| 704 int /* clipboard_type */, | 704 int /* clipboard_type */, |
| 705 ppapi::proxy::SerializedVar /* result */) | 705 ppapi::proxy::SerializedVar /* result */) |
| 706 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, | 706 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, |
| 707 PP_Instance /* instance */, | 707 PP_Instance /* instance */, |
| 708 int /* clipboard_type */, | 708 int /* clipboard_type */, |
| 709 ppapi::proxy::SerializedVar /* text */) | 709 ppapi::proxy::SerializedVar /* text */) |
| 710 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData, |
| 711 PP_Instance /* instance */, |
| 712 int /* clipboard_type */, |
| 713 int /* format */, |
| 714 ppapi::proxy::SerializedVar /* result */) |
| 715 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlashClipboard_WriteData, |
| 716 PP_Instance /* instance */, |
| 717 int /* clipboard_type */, |
| 718 std::vector<ppapi::proxy::SerializedVar> /* formats */, |
| 719 std::vector<ppapi::proxy::SerializedVar> /* data */) |
| 710 | 720 |
| 711 // PPB_Flash_File_FileRef. | 721 // PPB_Flash_File_FileRef. |
| 712 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, | 722 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, |
| 713 ppapi::HostResource /* file_ref */, | 723 ppapi::HostResource /* file_ref */, |
| 714 int32_t /* mode */, | 724 int32_t /* mode */, |
| 715 IPC::PlatformFileForTransit /* file_handle */, | 725 IPC::PlatformFileForTransit /* file_handle */, |
| 716 int32_t /* result */) | 726 int32_t /* result */) |
| 717 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, | 727 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, |
| 718 ppapi::HostResource /* file_ref */, | 728 ppapi::HostResource /* file_ref */, |
| 719 PP_FileInfo /* info */, | 729 PP_FileInfo /* info */, |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1137 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1147 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1138 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1148 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1139 ppapi::HostResource /* video_decoder */, | 1149 ppapi::HostResource /* video_decoder */, |
| 1140 int32_t /* picture buffer id */) | 1150 int32_t /* picture buffer id */) |
| 1141 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1151 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1142 ppapi::HostResource /* video_decoder */) | 1152 ppapi::HostResource /* video_decoder */) |
| 1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1153 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1144 ppapi::HostResource /* video_decoder */) | 1154 ppapi::HostResource /* video_decoder */) |
| 1145 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1155 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1146 ppapi::HostResource /* video_decoder */) | 1156 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |