diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 05:27:26 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 05:27:26 +0000 |
commit | 6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf (patch) | |
tree | 2fa73f7cf39796509c1ae384282c4dd61c7c72d7 /net/proxy | |
parent | 4d5b96b229869f27a1ab1bb31e952615ef770e12 (diff) | |
download | chromium_src-6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf.zip chromium_src-6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf.tar.gz chromium_src-6a60c8cdaeb4bfe2108bdda58e2c094ee453c1bf.tar.bz2 |
Cleanup: Remove unneeded forward declararations in net.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8525020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy')
-rw-r--r-- | net/proxy/dhcp_proxy_script_adapter_fetcher_win.h | 12 | ||||
-rw-r--r-- | net/proxy/init_proxy_resolver.h | 1 | ||||
-rw-r--r-- | net/proxy/proxy_script_fetcher_impl.h | 3 | ||||
-rw-r--r-- | net/proxy/proxy_service.h | 2 |
4 files changed, 8 insertions, 10 deletions
diff --git a/net/proxy/dhcp_proxy_script_adapter_fetcher_win.h b/net/proxy/dhcp_proxy_script_adapter_fetcher_win.h index ffbe9c0..562441f 100644 --- a/net/proxy/dhcp_proxy_script_adapter_fetcher_win.h +++ b/net/proxy/dhcp_proxy_script_adapter_fetcher_win.h @@ -2,10 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef NET_PROXY_DHCP_SCRIPT_ADAPTER_FETCHER_WIN_H_ -#define NET_PROXY_DHCP_SCRIPT_ADAPTER_FETCHER_WIN_H_ +#ifndef NET_PROXY_DHCP_PROXY_SCRIPT_ADAPTER_FETCHER_WIN_H_ +#define NET_PROXY_DHCP_PROXY_SCRIPT_ADAPTER_FETCHER_WIN_H_ #pragma once +#include <string> + #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" @@ -16,10 +18,6 @@ #include "net/base/net_export.h" #include "googleurl/src/gurl.h" -namespace base { -class MessageLoopProxy; -} - namespace net { class ProxyScriptFetcher; @@ -180,4 +178,4 @@ class NET_EXPORT_PRIVATE DhcpProxyScriptAdapterFetcher } // namespace net -#endif // NET_PROXY_DHCP_SCRIPT_ADAPTER_FETCHER_WIN_H_ +#endif // NET_PROXY_DHCP_PROXY_SCRIPT_ADAPTER_FETCHER_WIN_H_ diff --git a/net/proxy/init_proxy_resolver.h b/net/proxy/init_proxy_resolver.h index 4c90ab4..b656c76 100644 --- a/net/proxy/init_proxy_resolver.h +++ b/net/proxy/init_proxy_resolver.h @@ -24,7 +24,6 @@ class NetLogParameter; class ProxyConfig; class ProxyResolver; class ProxyScriptFetcher; -class URLRequestContext; // InitProxyResolver is a helper class used by ProxyService to // initialize a ProxyResolver with the PAC script data specified diff --git a/net/proxy/proxy_script_fetcher_impl.h b/net/proxy/proxy_script_fetcher_impl.h index a2a7b17..964030a 100644 --- a/net/proxy/proxy_script_fetcher_impl.h +++ b/net/proxy/proxy_script_fetcher_impl.h @@ -6,6 +6,8 @@ #define NET_PROXY_PROXY_SCRIPT_FETCHER_IMPL_H_ #pragma once +#include <string> + #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" @@ -17,7 +19,6 @@ #include "net/url_request/url_request.h" class GURL; -class X509Certificate; namespace net { diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h index f8c866c..ff5012f 100644 --- a/net/proxy/proxy_service.h +++ b/net/proxy/proxy_service.h @@ -6,6 +6,7 @@ #define NET_PROXY_PROXY_SERVICE_H_ #pragma once +#include <string> #include <vector> #include "base/gtest_prod_util.h" @@ -33,7 +34,6 @@ class InitProxyResolver; class NetworkDelegate; class ProxyResolver; class ProxyScriptFetcher; -class URLRequestContext; // This class can be used to resolve the proxy server to use when loading a // HTTP(S) URL. It uses the given ProxyResolver to handle the actual proxy |