| Index: ppapi/proxy/ppapi_messages.h
|
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h
|
| index ef5ee81f9598a637318fcdda624f6e41abfa8012..541b907e5ef9a899ee2d59cf5f70179b21d95f52 100644
|
| --- a/ppapi/proxy/ppapi_messages.h
|
| +++ b/ppapi/proxy/ppapi_messages.h
|
| @@ -330,6 +330,18 @@ IPC_MESSAGE_ROUTED4(PpapiMsg_PPBUDPSocket_SendToACK,
|
| bool /* succeeded */,
|
| int32_t /* bytes_written */)
|
|
|
| +// PPB_TCPServerSocket_Private.
|
| +IPC_MESSAGE_ROUTED3(PpapiMsg_PPBTCPServerSocket_ListenACK,
|
| + uint32 /* plugin_dispatcher_id */,
|
| + uint32 /* socket_id */,
|
| + bool /* succeeded */)
|
| +IPC_MESSAGE_ROUTED5(PpapiMsg_PPBTCPServerSocket_AcceptACK,
|
| + uint32 /* plugin_dispatcher_id */,
|
| + uint32 /* socket_id */,
|
| + uint32 /* tcp_socket_id */,
|
| + PP_NetAddress_Private /* local_addr */,
|
| + PP_NetAddress_Private /* remote_addr */)
|
| +
|
| // PPB_Graphics2D.
|
| IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics2D_FlushACK,
|
| ppapi::HostResource /* graphics_2d */,
|
| @@ -814,6 +826,20 @@ IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBUDPSocket_SendTo,
|
| IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBUDPSocket_Close,
|
| uint32 /* socket_id */)
|
|
|
| +// PPB_TCPServerSocket_Private.
|
| +IPC_SYNC_MESSAGE_CONTROL2_1(PpapiHostMsg_PPBTCPServerSocket_Create,
|
| + int32 /* routing_id */,
|
| + uint32 /* plugin_dispatcher_id */,
|
| + uint32 /* socket_id */)
|
| +IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBTCPServerSocket_Listen,
|
| + uint32 /* socket_id */,
|
| + PP_NetAddress_Private /* addr */,
|
| + int32_t /* backlog */)
|
| +IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Accept,
|
| + uint32 /* socket_id */)
|
| +IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_StopListening,
|
| + uint32 /* socket_id */)
|
| +
|
| // PPB_Font.
|
| IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
|
| std::string /* result */)
|
|
|