Chromium Code Reviews| Index: net/socket/ssl_client_socket.h |
| diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h |
| index a43e58cc26b852fb86d92a1a5ac7c4e7c357b286..86214709a31aa8915a3c02e57f0e37b801723903 100644 |
| --- a/net/socket/ssl_client_socket.h |
| +++ b/net/socket/ssl_client_socket.h |
| @@ -81,6 +81,13 @@ class NET_EXPORT SSLClientSocket : public SSLSocket { |
| virtual bool WasNpnNegotiated() const OVERRIDE; |
| virtual NextProto GetNegotiatedProtocol() const OVERRIDE; |
| + // Returns true if there is a cache entry in the ssl session cache |
| + // for the given cache key. |
| + // |
| + // The cache key consists of a host_and_port concatenated with a session |
| + // cache shard. |
|
Ryan Sleevi
2014/06/24 23:40:44
This second half an implementation detail; doesn't
mshelley1
2014/06/25 17:03:56
Done.
|
| + virtual bool InSessionCache() const = 0; |
| + |
| // Gets the SSL CertificateRequest info of the socket after Connect failed |
| // with ERR_SSL_CLIENT_AUTH_CERT_NEEDED. |
| virtual void GetSSLCertRequestInfo( |