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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 ppapi::proxy::SerializedFlashMenu /* menu_data */, | 744 ppapi::proxy::SerializedFlashMenu /* menu_data */, |
745 ppapi::HostResource /* result */) | 745 ppapi::HostResource /* result */) |
746 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, | 746 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, |
747 ppapi::HostResource /* menu */, | 747 ppapi::HostResource /* menu */, |
748 PP_Point /* location */) | 748 PP_Point /* location */) |
749 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, | 749 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, |
750 ppapi::HostResource /* menu */, | 750 ppapi::HostResource /* menu */, |
751 int32_t /* selected_id */, | 751 int32_t /* selected_id */, |
752 int32_t /* result */) | 752 int32_t /* result */) |
753 | 753 |
| 754 // PPB_Flash_MessageLoop. |
| 755 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashMessageLoop_Create, |
| 756 PP_Instance /* instance */, |
| 757 ppapi::HostResource /* result */) |
| 758 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashMessageLoop_Run, |
| 759 ppapi::HostResource /* flash_message_loop */, |
| 760 int32_t /* result */) |
| 761 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlashMessageLoop_Quit, |
| 762 ppapi::HostResource /* flash_message_loop */) |
| 763 |
754 // PPB_Flash_NetConnector. | 764 // PPB_Flash_NetConnector. |
755 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashNetConnector_Create, | 765 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlashNetConnector_Create, |
756 PP_Instance /* instance_id */, | 766 PP_Instance /* instance_id */, |
757 ppapi::HostResource /* result */) | 767 ppapi::HostResource /* result */) |
758 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, | 768 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashNetConnector_ConnectTcp, |
759 ppapi::HostResource /* connector */, | 769 ppapi::HostResource /* connector */, |
760 std::string /* host */, | 770 std::string /* host */, |
761 uint16_t /* port */) | 771 uint16_t /* port */) |
762 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, | 772 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashNetConnector_ConnectTcpAddress, |
763 ppapi::HostResource /* connector */, | 773 ppapi::HostResource /* connector */, |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1121 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1131 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1122 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1132 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1123 ppapi::HostResource /* video_decoder */, | 1133 ppapi::HostResource /* video_decoder */, |
1124 int32_t /* picture buffer id */) | 1134 int32_t /* picture buffer id */) |
1125 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1135 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1126 ppapi::HostResource /* video_decoder */) | 1136 ppapi::HostResource /* video_decoder */) |
1127 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1137 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1128 ppapi::HostResource /* video_decoder */) | 1138 ppapi::HostResource /* video_decoder */) |
1129 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1139 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1130 ppapi::HostResource /* video_decoder */) | 1140 ppapi::HostResource /* video_decoder */) |
OLD | NEW |