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

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

Issue 563073002: Pepper UDP socket: buffer received packets in the plugin process to improve performance. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « ppapi/proxy/plugin_message_filter.cc ('k') | ppapi/proxy/resource_reply_thread_registrar.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1710 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_CreatePrivate) 1721 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_CreatePrivate)
1722 1722
1723 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SetOption, 1723 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SetOption,
1724 PP_UDPSocket_Option /* name */, 1724 PP_UDPSocket_Option /* name */,
1725 ppapi::SocketOptionData /* value */) 1725 ppapi::SocketOptionData /* value */)
1726 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UDPSocket_SetOptionReply) 1726 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_UDPSocket_SetOptionReply)
1727 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_Bind, 1727 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_Bind,
1728 PP_NetAddress_Private /* net_addr */) 1728 PP_NetAddress_Private /* net_addr */)
1729 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_BindReply, 1729 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_BindReply,
1730 PP_NetAddress_Private /* bound_addr */) 1730 PP_NetAddress_Private /* bound_addr */)
1731 IPC_MESSAGE_CONTROL1(PpapiHostMsg_UDPSocket_RecvFrom, 1731 IPC_MESSAGE_CONTROL3(PpapiPluginMsg_UDPSocket_PushRecvResult,
1732 int32_t /* num_bytes */) 1732 int32_t /* result */,
1733 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_UDPSocket_RecvFromReply,
1734 std::string /* data */, 1733 std::string /* data */,
1735 PP_NetAddress_Private /* remote_addr */) 1734 PP_NetAddress_Private /* remote_addr */)
1735 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_RecvSlotAvailable)
1736 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SendTo, 1736 IPC_MESSAGE_CONTROL2(PpapiHostMsg_UDPSocket_SendTo,
1737 std::string /* data */, 1737 std::string /* data */,
1738 PP_NetAddress_Private /* net_addr */) 1738 PP_NetAddress_Private /* net_addr */)
1739 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_SendToReply, 1739 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_UDPSocket_SendToReply,
1740 int32_t /* bytes_written */) 1740 int32_t /* bytes_written */)
1741 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_Close) 1741 IPC_MESSAGE_CONTROL0(PpapiHostMsg_UDPSocket_Close)
1742 1742
1743 // URLLoader ------------------------------------------------------------------ 1743 // URLLoader ------------------------------------------------------------------
1744 1744
1745 IPC_MESSAGE_CONTROL0(PpapiHostMsg_URLLoader_Create) 1745 IPC_MESSAGE_CONTROL0(PpapiHostMsg_URLLoader_Create)
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
2268 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2268 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2269 PP_TalkPermission /* permission */) 2269 PP_TalkPermission /* permission */)
2270 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2270 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2271 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2271 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2272 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2272 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2273 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2273 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2274 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2274 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2275 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2275 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2276 2276
2277 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2277 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/plugin_message_filter.cc ('k') | ppapi/proxy/resource_reply_thread_registrar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698