| Index: net/socket/ssl_client_socket_openssl.h
|
| diff --git a/net/socket/ssl_client_socket_openssl.h b/net/socket/ssl_client_socket_openssl.h
|
| index d113f8267a6b6903aa6cdd235d4e6ec3957e464c..dccdb3217c6ccefad69d7aa56d452b7adf721d0a 100644
|
| --- a/net/socket/ssl_client_socket_openssl.h
|
| +++ b/net/socket/ssl_client_socket_openssl.h
|
| @@ -57,14 +57,17 @@ class SSLClientSocketOpenSSL : public SSLClientSocket {
|
| // SSLClientSocket implementation.
|
| virtual void GetSSLCertRequestInfo(
|
| SSLCertRequestInfo* cert_request_info) OVERRIDE;
|
| + virtual NextProtoStatus GetNextProto(std::string* proto,
|
| + std::string* server_protos) OVERRIDE;
|
| + virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE;
|
| +
|
| + // SSLSocket implementation.
|
| virtual int ExportKeyingMaterial(const base::StringPiece& label,
|
| bool has_context,
|
| const base::StringPiece& context,
|
| unsigned char* out,
|
| unsigned int outlen) OVERRIDE;
|
| - virtual NextProtoStatus GetNextProto(std::string* proto,
|
| - std::string* server_protos) OVERRIDE;
|
| - virtual ServerBoundCertService* GetServerBoundCertService() const OVERRIDE;
|
| + virtual int GetTLSUniqueChannelBinding(std::string* out) OVERRIDE;
|
|
|
| // StreamSocket implementation.
|
| virtual int Connect(const CompletionCallback& callback) OVERRIDE;
|
|
|