| Index: ppapi/proxy/ppapi_messages.h
|
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h
|
| index 1d288dd909f97477f2335cfcd686fc7632055e00..757044e609ab98a3fc8800cf8d5bf0f33e2af9e9 100644
|
| --- a/ppapi/proxy/ppapi_messages.h
|
| +++ b/ppapi/proxy/ppapi_messages.h
|
| @@ -341,10 +341,11 @@ IPC_MESSAGE_ROUTED5(PpapiMsg_PPBTCPSocket_ConnectACK,
|
| bool /* succeeded */,
|
| PP_NetAddress_Private /* local_addr */,
|
| PP_NetAddress_Private /* remote_addr */)
|
| -IPC_MESSAGE_ROUTED3(PpapiMsg_PPBTCPSocket_SSLHandshakeACK,
|
| +IPC_MESSAGE_ROUTED4(PpapiMsg_PPBTCPSocket_SSLHandshakeACK,
|
| uint32 /* plugin_dispatcher_id */,
|
| uint32 /* socket_id */,
|
| - bool /* succeeded */)
|
| + bool /* succeeded */,
|
| + ppapi::PPB_X509Certificate_Fields /* certificate_fields */)
|
| IPC_MESSAGE_ROUTED4(PpapiMsg_PPBTCPSocket_ReadACK,
|
| uint32 /* plugin_dispatcher_id */,
|
| uint32 /* socket_id */,
|
| @@ -1272,10 +1273,12 @@ IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBTCPSocket_ConnectWithNetAddress,
|
| int32 /* routing_id */,
|
| uint32 /* socket_id */,
|
| PP_NetAddress_Private /* net_addr */)
|
| -IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBTCPSocket_SSLHandshake,
|
| +IPC_MESSAGE_CONTROL5(PpapiHostMsg_PPBTCPSocket_SSLHandshake,
|
| uint32 /* socket_id */,
|
| std::string /* server_name */,
|
| - uint16_t /* server_port */)
|
| + uint16_t /* server_port */,
|
| + std::vector<std::vector<char> > /* trusted_certs */,
|
| + std::vector<std::vector<char> > /* untrusted_certs */)
|
| IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPSocket_Read,
|
| uint32 /* socket_id */,
|
| int32_t /* bytes_to_read */)
|
|
|