| Index: net/http/http_network_session_peer.h
|
| diff --git a/net/http/http_network_session_peer.h b/net/http/http_network_session_peer.h
|
| index d58d560fbe82777e383de38868c1fd7fea63a46e..94234b607c785a84af2e6cd7f40457e2276e57ff 100644
|
| --- a/net/http/http_network_session_peer.h
|
| +++ b/net/http/http_network_session_peer.h
|
| @@ -11,14 +11,11 @@
|
|
|
| namespace net {
|
|
|
| +class ClientSocketPoolManager;
|
| class HostPortPair;
|
| class HttpNetworkSession;
|
| -class HttpProxyClientSocketPool;
|
| class HttpStreamFactory;
|
| class ProxyService;
|
| -class SOCKSClientSocketPool;
|
| -class SSLClientSocketPool;
|
| -class TransportClientSocketPool;
|
|
|
| class NET_EXPORT_PRIVATE HttpNetworkSessionPeer {
|
| public:
|
| @@ -26,21 +23,8 @@ class NET_EXPORT_PRIVATE HttpNetworkSessionPeer {
|
| const scoped_refptr<HttpNetworkSession>& session);
|
| ~HttpNetworkSessionPeer();
|
|
|
| - void SetTransportSocketPool(TransportClientSocketPool* pool);
|
| -
|
| - void SetSocketPoolForSOCKSProxy(
|
| - const HostPortPair& socks_proxy,
|
| - SOCKSClientSocketPool* pool);
|
| -
|
| - void SetSocketPoolForHTTPProxy(
|
| - const HostPortPair& http_proxy,
|
| - HttpProxyClientSocketPool* pool);
|
| -
|
| - void SetSSLSocketPool(SSLClientSocketPool* pool);
|
| -
|
| - void SetSocketPoolForSSLWithProxy(
|
| - const HostPortPair& proxy_host,
|
| - SSLClientSocketPool* pool);
|
| + void SetClientSocketPoolManager(
|
| + ClientSocketPoolManager* socket_pool_manager);
|
|
|
| void SetProxyService(ProxyService* proxy_service);
|
|
|
|
|