| Index: net/socket/ssl_client_socket_pool.h
|
| diff --git a/net/socket/ssl_client_socket_pool.h b/net/socket/ssl_client_socket_pool.h
|
| index 1be34bddf5c70533dbd6530f16b216593a2ba40a..03bdf94607591836259dd69135aee3c0203a199b 100644
|
| --- a/net/socket/ssl_client_socket_pool.h
|
| +++ b/net/socket/ssl_client_socket_pool.h
|
| @@ -190,12 +190,12 @@ class NET_EXPORT_PRIVATE SSLClientSocketPool
|
|
|
| virtual ~SSLClientSocketPool();
|
|
|
| - // ClientSocketPool methods:
|
| + // ClientSocketPool implementation.
|
| virtual int RequestSocket(const std::string& group_name,
|
| const void* connect_params,
|
| RequestPriority priority,
|
| ClientSocketHandle* handle,
|
| - OldCompletionCallback* callback,
|
| + const CompletionCallback& callback,
|
| const BoundNetLog& net_log) OVERRIDE;
|
|
|
| virtual void RequestSockets(const std::string& group_name,
|
| @@ -238,13 +238,13 @@ class NET_EXPORT_PRIVATE SSLClientSocketPool
|
|
|
| virtual ClientSocketPoolHistograms* histograms() const OVERRIDE;
|
|
|
| - // LayeredPool methods:
|
| + // LayeredPool implementation.
|
| virtual bool CloseOneIdleConnection() OVERRIDE;
|
|
|
| private:
|
| typedef ClientSocketPoolBase<SSLSocketParams> PoolBase;
|
|
|
| - // SSLConfigService::Observer methods:
|
| + // SSLConfigService::Observer implementation.
|
|
|
| // When the user changes the SSL config, we flush all idle sockets so they
|
| // won't get re-used.
|
|
|