diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-11 15:40:23 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-11 15:40:23 +0000 |
commit | 928fb58bd99536f16df3739329cbade0853b3309 (patch) | |
tree | 7a6433d25d9c5303614f05b6b39cb49e60468d12 /net/http/http_network_layer.h | |
parent | 6723f835ff0247e5bffad9e92d8d42a8c3ae1b3b (diff) | |
download | chromium_src-928fb58bd99536f16df3739329cbade0853b3309.zip chromium_src-928fb58bd99536f16df3739329cbade0853b3309.tar.gz chromium_src-928fb58bd99536f16df3739329cbade0853b3309.tar.bz2 |
Rename HttpProxy* classes to Proxy*. Move them into a net/proxy/ subdirectory.
I'm making this change because proxy resolution is really not specific to the HTTP protocol. We need to use the proxy service in our FTP implementation, for example. I made a separate directory instead of just putting these in base, because I anticipate more files once we have our own PAC implementation.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_network_layer.h')
-rw-r--r-- | net/http/http_network_layer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_network_layer.h b/net/http/http_network_layer.h index db7d0d9..2b89f79 100644 --- a/net/http/http_network_layer.h +++ b/net/http/http_network_layer.h @@ -36,16 +36,16 @@ namespace net { class HttpNetworkSession; -class HttpProxyInfo; +class ProxyInfo; class HttpNetworkLayer : public HttpTransactionFactory { public: - explicit HttpNetworkLayer(const HttpProxyInfo* pi); + explicit HttpNetworkLayer(const ProxyInfo* pi); ~HttpNetworkLayer(); // This function hides the details of how a network layer gets instantiated // and allows other implementations to be substituted. - static HttpTransactionFactory* CreateFactory(const HttpProxyInfo* pi); + static HttpTransactionFactory* CreateFactory(const ProxyInfo* pi); // If value is true, then WinHTTP will be used. static void UseWinHttp(bool value); |