diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-21 00:18:30 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-21 00:18:30 +0000 |
commit | 67875f5116783d8193e12c863f082d7910e0479e (patch) | |
tree | ff905a683bdceb9375dfa9a5f6a70ebca5d03049 /net/http/http_proxy_client_socket_pool.h | |
parent | 6626e75cff876ca9da3e0dfddbf75ea164b6941f (diff) | |
download | chromium_src-67875f5116783d8193e12c863f082d7910e0479e.zip chromium_src-67875f5116783d8193e12c863f082d7910e0479e.tar.gz chromium_src-67875f5116783d8193e12c863f082d7910e0479e.tar.bz2 |
net: Add NET_API to a few more files.
BUG=76997
TEST=NONE
Review URL: http://codereview.chromium.org/7056019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86181 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_proxy_client_socket_pool.h')
-rw-r--r-- | net/http/http_proxy_client_socket_pool.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/http/http_proxy_client_socket_pool.h b/net/http/http_proxy_client_socket_pool.h index c211fec..ac254ff 100644 --- a/net/http/http_proxy_client_socket_pool.h +++ b/net/http/http_proxy_client_socket_pool.h @@ -13,6 +13,7 @@ #include "base/memory/scoped_ptr.h" #include "base/time.h" #include "net/base/host_port_pair.h" +#include "net/base/net_api.h" #include "net/http/http_auth.h" #include "net/http/http_response_info.h" #include "net/http/proxy_client_socket.h" @@ -36,7 +37,8 @@ class TransportSocketParams; // types. The other param must be NULL. When using an HTTP Proxy, // |transport_params| must be set. When using an HTTPS Proxy, |ssl_params| // must be set. -class HttpProxySocketParams : public base::RefCounted<HttpProxySocketParams> { +class NET_TEST HttpProxySocketParams + : public base::RefCounted<HttpProxySocketParams> { public: HttpProxySocketParams( const scoped_refptr<TransportSocketParams>& transport_params, @@ -165,7 +167,7 @@ class HttpProxyConnectJob : public ConnectJob { DISALLOW_COPY_AND_ASSIGN(HttpProxyConnectJob); }; -class HttpProxyClientSocketPool : public ClientSocketPool { +class NET_TEST HttpProxyClientSocketPool : public ClientSocketPool { public: HttpProxyClientSocketPool( int max_sockets, |