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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 ppapi::proxy::SerializedFlashMenu /* menu_data */, | 752 ppapi::proxy::SerializedFlashMenu /* menu_data */, |
753 ppapi::HostResource /* result */) | 753 ppapi::HostResource /* result */) |
754 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, | 754 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, |
755 ppapi::HostResource /* menu */, | 755 ppapi::HostResource /* menu */, |
756 PP_Point /* location */) | 756 PP_Point /* location */) |
757 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, | 757 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, |
758 ppapi::HostResource /* menu */, | 758 ppapi::HostResource /* menu */, |
759 int32_t /* selected_id */, | 759 int32_t /* selected_id */, |
760 int32_t /* result */) | 760 int32_t /* result */) |
761 | 761 |
| 762 // PPB_Flash_MessageLoop. |
| 763 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashMessageLoop_Create, |
| 764 PP_Instance /* instance */, |
| 765 ppapi::HostResource /* result */) |
| 766 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashMessageLoop_Run, |
| 767 ppapi::HostResource /* flash_message_loop */, |
| 768 int32_t /* result */) |
| 769 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlashMessageLoop_Quit, |
| 770 ppapi::HostResource /* flash_message_loop */) |
| 771 |
762 // PPB_Flash_NetConnector. | 772 // PPB_Flash_NetConnector. |
763 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashNetConnector_Create, | 773 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashNetConnector_Create, |
764 PP_Instance /* instance_id */, | 774 PP_Instance /* instance_id */, |
765 ppapi::HostResource /* result */) | 775 ppapi::HostResource /* result */) |
766 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, | 776 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, |
767 ppapi::HostResource /* connector */, | 777 ppapi::HostResource /* connector */, |
768 std::string /* host */, | 778 std::string /* host */, |
769 uint16_t /* port */) | 779 uint16_t /* port */) |
770 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, | 780 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, |
771 ppapi::HostResource /* connector */, | 781 ppapi::HostResource /* connector */, |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1139 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1130 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1140 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1131 ppapi::HostResource /* video_decoder */, | 1141 ppapi::HostResource /* video_decoder */, |
1132 int32_t /* picture buffer id */) | 1142 int32_t /* picture buffer id */) |
1133 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1134 ppapi::HostResource /* video_decoder */) | 1144 ppapi::HostResource /* video_decoder */) |
1135 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1145 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1136 ppapi::HostResource /* video_decoder */) | 1146 ppapi::HostResource /* video_decoder */) |
1137 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1147 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1138 ppapi::HostResource /* video_decoder */) | 1148 ppapi::HostResource /* video_decoder */) |
OLD | NEW |