diff options
Diffstat (limited to 'net/proxy/proxy_list.h')
-rw-r--r-- | net/proxy/proxy_list.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/proxy/proxy_list.h b/net/proxy/proxy_list.h index 26265d0..e5c41c6 100644 --- a/net/proxy/proxy_list.h +++ b/net/proxy/proxy_list.h @@ -10,15 +10,19 @@ #include <vector> #include "net/proxy/proxy_retry_info.h" -#include "net/proxy/proxy_server.h" namespace net { +class ProxyServer; + // This class is used to hold a list of proxies returned by GetProxyForUrl or // manually configured. It handles proxy fallback if multiple servers are // specified. class ProxyList { public: + ProxyList(); + ~ProxyList(); + // Initializes the proxy list to a string containing one or more proxy servers // delimited by a semicolon. void Set(const std::string& proxy_uri_list); |