Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 704133005: Pepper: Add support for multicast in PPB_UDPSocket API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo: SetMulticastInterface -> SetMulticastTimeToLive Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 PP_TALKPERMISSION_NUM_PERMISSIONS - 1) 124 PP_TALKPERMISSION_NUM_PERMISSIONS - 1)
125 IPC_ENUM_TRAITS_MAX_VALUE(PP_TCPSocket_Option, 125 IPC_ENUM_TRAITS_MAX_VALUE(PP_TCPSocket_Option,
126 PP_TCPSOCKET_OPTION_RECV_BUFFER_SIZE) 126 PP_TCPSOCKET_OPTION_RECV_BUFFER_SIZE)
127 IPC_ENUM_TRAITS(PP_TextInput_Type) 127 IPC_ENUM_TRAITS(PP_TextInput_Type)
128 IPC_ENUM_TRAITS(PP_TrueTypeFontFamily_Dev) 128 IPC_ENUM_TRAITS(PP_TrueTypeFontFamily_Dev)
129 IPC_ENUM_TRAITS(PP_TrueTypeFontStyle_Dev) 129 IPC_ENUM_TRAITS(PP_TrueTypeFontStyle_Dev)
130 IPC_ENUM_TRAITS(PP_TrueTypeFontWeight_Dev) 130 IPC_ENUM_TRAITS(PP_TrueTypeFontWeight_Dev)
131 IPC_ENUM_TRAITS(PP_TrueTypeFontWidth_Dev) 131 IPC_ENUM_TRAITS(PP_TrueTypeFontWidth_Dev)
132 IPC_ENUM_TRAITS(PP_TrueTypeFontCharset_Dev) 132 IPC_ENUM_TRAITS(PP_TrueTypeFontCharset_Dev)
133 IPC_ENUM_TRAITS_MAX_VALUE(PP_UDPSocket_Option, 133 IPC_ENUM_TRAITS_MAX_VALUE(PP_UDPSocket_Option,
134 PP_UDPSOCKET_OPTION_RECV_BUFFER_SIZE) 134 PP_UDPSOCKET_OPTION_MULTICAST_TTL)
135 IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev) 135 IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev)
136 IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) 136 IPC_ENUM_TRAITS(PP_VideoDecoder_Profile)
137 IPC_ENUM_TRAITS_MAX_VALUE(PP_VideoFrame_Format, PP_VIDEOFRAME_FORMAT_LAST) 137 IPC_ENUM_TRAITS_MAX_VALUE(PP_VideoFrame_Format, PP_VIDEOFRAME_FORMAT_LAST)
138 IPC_ENUM_TRAITS_MAX_VALUE(PP_HardwareAcceleration, PP_HARDWAREACCELERATION_LAST) 138 IPC_ENUM_TRAITS_MAX_VALUE(PP_HardwareAcceleration, PP_HARDWAREACCELERATION_LAST)
139 IPC_ENUM_TRAITS_MAX_VALUE(PP_VideoProfile, PP_VIDEOPROFILE_MAX) 139 IPC_ENUM_TRAITS_MAX_VALUE(PP_VideoProfile, PP_VIDEOPROFILE_MAX)
140 140
141 IPC_STRUCT_TRAITS_BEGIN(PP_Point) 141 IPC_STRUCT_TRAITS_BEGIN(PP_Point)
142 IPC_STRUCT_TRAITS_MEMBER(x) 142 IPC_STRUCT_TRAITS_MEMBER(x)
143 IPC_STRUCT_TRAITS_MEMBER(y) 143 IPC_STRUCT_TRAITS_MEMBER(y)
144 IPC_STRUCT_TRAITS_END() 144 IPC_STRUCT_TRAITS_END()
(...skipping 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after
1773 int32_t /* result */, 1773 int32_t /* result */,
1774 std::string /* data */, 1774 std::string /* data */,
1775 PP_NetAddress_Private /* remote_addr */) 1775 PP_NetAddress_Private /* remote_addr */)
1776 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_RecvSlotAvailable) 1776 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_RecvSlotAvailable)
1777 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SendTo, 1777 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SendTo,
1778 std::string /* data */, 1778 std::string /* data */,
1779 PP_NetAddress_Private /* net_addr */) 1779 PP_NetAddress_Private /* net_addr */)
1780 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_SendToReply, 1780 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_SendToReply,
1781 int32_t /* bytes_written */) 1781 int32_t /* bytes_written */)
1782 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_Close) 1782 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_Close)
1783 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_JoinGroup,
1784 PP_NetAddress_Private /* net_addr */)
1785 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UDPSocket_JoinGroupReply)
1786 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_LeaveGroup,
1787 PP_NetAddress_Private /* net_addr */)
1788 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UDPSocket_LeaveGroupReply)
1783 1789
1784 // URLLoader ------------------------------------------------------------------ 1790 // URLLoader ------------------------------------------------------------------
1785 1791
1786 IPC_MESSAGE_CONTROL0(PpapiHostMsg_URLLoader_Create) 1792 IPC_MESSAGE_CONTROL0(PpapiHostMsg_URLLoader_Create)
1787 1793
1788 // These messages correspond to PPAPI calls and all should get a 1794 // These messages correspond to PPAPI calls and all should get a
1789 // CallbackComplete message. 1795 // CallbackComplete message.
1790 IPC_MESSAGE_CONTROL1(PpapiHostMsg_URLLoader_Open, 1796 IPC_MESSAGE_CONTROL1(PpapiHostMsg_URLLoader_Open,
1791 ppapi::URLRequestInfoData /* request_data */) 1797 ppapi::URLRequestInfoData /* request_data */)
1792 1798
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
2352 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2358 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2353 PP_TalkPermission /* permission */) 2359 PP_TalkPermission /* permission */)
2354 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2360 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2355 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2361 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2356 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2362 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2357 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2363 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2358 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2364 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2359 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2365 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2360 2366
2361 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2367 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/proxy/udp_socket_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698