| Index: webkit/plugins/ppapi/plugin_delegate.h
|
| diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
|
| index d5c15571769f0ef130bd8fbf446942ca1976a50c..b995d2cc2c5ab10a125c1ddae1853d3fcd71583d 100644
|
| --- a/webkit/plugins/ppapi/plugin_delegate.h
|
| +++ b/webkit/plugins/ppapi/plugin_delegate.h
|
| @@ -469,9 +469,12 @@ class PluginDelegate {
|
| PPB_TCPSocket_Private_Impl* socket,
|
| uint32 socket_id,
|
| const PP_NetAddress_Private& addr) = 0;
|
| - virtual void TCPSocketSSLHandshake(uint32 socket_id,
|
| - const std::string& server_name,
|
| - uint16_t server_port) = 0;
|
| + virtual void TCPSocketSSLHandshake(
|
| + uint32 socket_id,
|
| + const std::string& server_name,
|
| + uint16_t server_port,
|
| + const std::vector<std::vector<char> >& trusted_certs,
|
| + const std::vector<std::vector<char> >& untrusted_certs) = 0;
|
| virtual void TCPSocketRead(uint32 socket_id, int32_t bytes_to_read) = 0;
|
| virtual void TCPSocketWrite(uint32 socket_id, const std::string& buffer) = 0;
|
| virtual void TCPSocketDisconnect(uint32 socket_id) = 0;
|
|
|