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

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: Rebase, remove IF option, JoinGroup and LeaveGroup as functions Created 5 years, 10 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 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 int32_t /* result */, 1739 int32_t /* result */,
1740 std::string /* data */, 1740 std::string /* data */,
1741 PP_NetAddress_Private /* remote_addr */) 1741 PP_NetAddress_Private /* remote_addr */)
1742 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_RecvSlotAvailable) 1742 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_RecvSlotAvailable)
1743 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SendTo, 1743 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SendTo,
1744 std::string /* data */, 1744 std::string /* data */,
1745 PP_NetAddress_Private /* net_addr */) 1745 PP_NetAddress_Private /* net_addr */)
1746 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_SendToReply, 1746 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_SendToReply,
1747 int32_t /* bytes_written */) 1747 int32_t /* bytes_written */)
1748 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_Close) 1748 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_Close)
1749 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_JoinGroup,
1750 PP_NetAddress_Private /* net_addr */)
1751 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UDPSocket_JoinGroupReply)
1752 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_LeaveGroup,
1753 PP_NetAddress_Private /* net_addr */)
1754 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UDPSocket_LeaveGroupReply)
1749 1755
1750 // URLLoader ------------------------------------------------------------------ 1756 // URLLoader ------------------------------------------------------------------
1751 1757
1752 IPC_MESSAGE_CONTROL0(PpapiHostMsg_URLLoader_Create) 1758 IPC_MESSAGE_CONTROL0(PpapiHostMsg_URLLoader_Create)
1753 1759
1754 // These messages correspond to PPAPI calls and all should get a 1760 // These messages correspond to PPAPI calls and all should get a
1755 // CallbackComplete message. 1761 // CallbackComplete message.
1756 IPC_MESSAGE_CONTROL1(PpapiHostMsg_URLLoader_Open, 1762 IPC_MESSAGE_CONTROL1(PpapiHostMsg_URLLoader_Open,
1757 ppapi::URLRequestInfoData /* request_data */) 1763 ppapi::URLRequestInfoData /* request_data */)
1758 1764
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
2276 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2282 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2277 PP_TalkPermission /* permission */) 2283 PP_TalkPermission /* permission */)
2278 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2284 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2279 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2285 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2280 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2286 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2281 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2287 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2282 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2288 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2283 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2289 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2284 2290
2285 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2291 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698