diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-10 04:52:53 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-10 04:52:53 +0000 |
commit | 9a689bd50e409ac0d21375dd51a82206ca403cde (patch) | |
tree | fa750cc6fa02b023bee3d748d0b484eca20e2410 /net/net.gyp | |
parent | ea478a8069dec20dcbc3a8ae814386a0b444c1cb (diff) | |
download | chromium_src-9a689bd50e409ac0d21375dd51a82206ca403cde.zip chromium_src-9a689bd50e409ac0d21375dd51a82206ca403cde.tar.gz chromium_src-9a689bd50e409ac0d21375dd51a82206ca403cde.tar.bz2 |
Move much of the TCPClientSocketPool implementation out into ClientSocketPoolBase and TCPConnectingSocket for reuse.
When I write SSLClientSocketPool, it will need to reuse lots of this functionality. This isn't quite the interface we want yet, since we'll need a ConnectingSocket interface for both SSLConnectingSocket and TCPConnectingSocket to derive from, but this is a start.
BUG=http://crbug.com/13289
TEST=none
Review URL: http://codereview.chromium.org/118423
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18034 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net.gyp')
-rw-r--r-- | net/net.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/net.gyp b/net/net.gyp index 37bc3a7..66f888d 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -50,6 +50,8 @@ 'base/client_socket_handle.cc', 'base/client_socket_handle.h', 'base/client_socket_pool.h', + 'base/client_socket_pool_base.cc', + 'base/client_socket_pool_base.h', 'base/completion_callback.h', 'base/connection_type_histograms.cc', 'base/connection_type_histograms.h', @@ -130,6 +132,8 @@ 'base/tcp_client_socket_pool.h', 'base/tcp_client_socket_win.cc', 'base/tcp_client_socket_win.h', + 'base/tcp_connecting_socket.cc', + 'base/tcp_connecting_socket.h', 'base/telnet_server.cc', 'base/telnet_server.h', 'base/upload_data.cc', |