diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 16:42:02 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 16:42:02 +0000 |
commit | a42dbd14069319c4ead22992dc344bd91a2694ed (patch) | |
tree | e55680706b33026f6b9803e1e59d61896e6574ec /jingle | |
parent | e548a7852b2fe4ad6a740f778da5c3c4f2ce32a2 (diff) | |
download | chromium_src-a42dbd14069319c4ead22992dc344bd91a2694ed.zip chromium_src-a42dbd14069319c4ead22992dc344bd91a2694ed.tar.gz chromium_src-a42dbd14069319c4ead22992dc344bd91a2694ed.tar.bz2 |
Make ClientSocketPoolManager into an interface.
This allows for using a MockClientSocketPoolManager. The default implementation has been moved into ClientSocketPoolManagerImpl. This allows HttpNetworkSessionPeer to replace the whole ClientSocketPoolManager rather than individual socket pools, which is necessary because socket pools will become more integrated in the future.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8572041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110510 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r-- | jingle/notifier/base/proxy_resolving_client_socket.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jingle/notifier/base/proxy_resolving_client_socket.cc b/jingle/notifier/base/proxy_resolving_client_socket.cc index cc5bcbe..4c31ba3 100644 --- a/jingle/notifier/base/proxy_resolving_client_socket.cc +++ b/jingle/notifier/base/proxy_resolving_client_socket.cc @@ -165,7 +165,7 @@ void ProxyResolvingClientSocket::ProcessProxyResolveDone(int status) { transport_.reset(new net::ClientSocketHandle); // Now that we have resolved the proxy, we need to connect. - status = net::ClientSocketPoolManager::InitSocketHandleForRawConnect( + status = net::InitSocketHandleForRawConnect( dest_host_port_pair_, network_session_.get(), proxy_info_, |