| 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..9480c09bfe8e0ee2fe242b81aa0c72540eee9cb3 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)
|
| @@ -1008,6 +1010,7 @@ class MockSSLClientSocket : public MockClientSocket, public AsyncSocket {
|
| bool new_npn_value_;
|
| bool is_protocol_negotiated_set_;
|
| NextProto protocol_negotiated_;
|
| + HostPortPair host_port_pair_;
|
|
|
| CompletionCallback connect_callback_;
|
| // Indicates what state of Connect the socket should enter.
|
|
|