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 74423c1a626194545e5c672d466f485f819f1a62..9e0d6fb095b7292f45fb12580f3d393895dcc687 100644 |
| --- a/net/socket/ssl_client_socket.h |
| +++ b/net/socket/ssl_client_socket.h |
| @@ -83,15 +83,8 @@ class NET_EXPORT SSLClientSocket : public SSLSocket { |
| virtual bool WasNpnNegotiated() const OVERRIDE; |
| virtual NextProto GetNegotiatedProtocol() const OVERRIDE; |
| - // Formats a unique key for the SSL session cache. This method |
| - // is necessary so that all classes create cache keys in a consistent |
| - // manner. |
| - // TODO(mshelley) This method will be deleted in an upcoming CL when |
| - // it will no longer be necessary to generate a cache key outside of |
| - // an SSLClientSocket. |
| - static std::string CreateSessionCacheKey( |
| - const HostPortPair& host_and_port, |
| - const std::string& ssl_session_cache_shard); |
| + // Compute a unique key string for the SSL session cache. |
|
wtc
2014/08/14 00:46:45
Nit: Compute => Computes
mshelley
2014/08/14 20:01:36
Done.
|
| + virtual std::string GetSessionCacheKey() const = 0; |
| // Returns true if there is a cache entry in the SSL session cache |
| // for the cache key of the SSL socket. |