| Index: net/socket/socket_test_util.h
|
| diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
|
| index 00905cd6dbb60b79d1d5b5220c9b7aa1078c7afb..50d28ecf0564f3c87d3a86bb74da4e8af5a5bf3b 100644
|
| --- a/net/socket/socket_test_util.h
|
| +++ b/net/socket/socket_test_util.h
|
| @@ -703,6 +703,7 @@ class MockClientSocket : public SSLClientSocket {
|
| virtual void SetOmniboxSpeculation() OVERRIDE {}
|
|
|
| // SSLClientSocket implementation.
|
| + virtual std::string GetSessionCacheKey() const OVERRIDE;
|
| virtual bool InSessionCache() const OVERRIDE;
|
| virtual void SetHandshakeCompletionCallback(const base::Closure& cb) OVERRIDE;
|
| virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info)
|
| @@ -964,6 +965,7 @@ class MockSSLClientSocket : public MockClientSocket, public AsyncSocket {
|
| virtual bool GetSSLInfo(SSLInfo* ssl_info) OVERRIDE;
|
|
|
| // SSLClientSocket implementation.
|
| + virtual std::string GetSessionCacheKey() const OVERRIDE;
|
| virtual bool InSessionCache() const OVERRIDE;
|
| virtual void SetHandshakeCompletionCallback(const base::Closure& cb) OVERRIDE;
|
| virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info)
|
| @@ -1003,6 +1005,7 @@ class MockSSLClientSocket : public MockClientSocket, public AsyncSocket {
|
| int DoSSLConnectComplete(int result);
|
|
|
| scoped_ptr<ClientSocketHandle> transport_;
|
| + HostPortPair host_port_pair_;
|
| SSLSocketDataProvider* data_;
|
| bool is_npn_state_set_;
|
| bool new_npn_value_;
|
|
|