| Index: webkit/plugins/ppapi/plugin_delegate.h
|
| diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
|
| index 1c01f37395384151332a29b4bb2cfbfeb251ce89..3ca7e0cc22335e16c8833b1c938ed4153b365ee2 100644
|
| --- a/webkit/plugins/ppapi/plugin_delegate.h
|
| +++ b/webkit/plugins/ppapi/plugin_delegate.h
|
| @@ -455,9 +455,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;
|
|
|