diff options
Diffstat (limited to 'net/proxy/proxy_config_service_common_unittest.h')
-rw-r--r-- | net/proxy/proxy_config_service_common_unittest.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/proxy/proxy_config_service_common_unittest.h b/net/proxy/proxy_config_service_common_unittest.h index 08487ec..783fc6f 100644 --- a/net/proxy/proxy_config_service_common_unittest.h +++ b/net/proxy/proxy_config_service_common_unittest.h @@ -19,7 +19,8 @@ ProxyConfig::ProxyRules MakeProxyRules( const char* single_proxy, const char* proxy_for_http, const char* proxy_for_https, - const char* proxy_for_ftp); + const char* proxy_for_ftp, + const char* socks_proxy); ProxyConfig::ProxyRules MakeSingleProxyRules(const char* single_proxy); @@ -28,6 +29,12 @@ ProxyConfig::ProxyRules MakeProxyPerSchemeRules( const char* proxy_https, const char* proxy_ftp); +ProxyConfig::ProxyRules MakeProxyPerSchemeRules( + const char* proxy_http, + const char* proxy_https, + const char* proxy_ftp, + const char* socks_proxy); + typedef std::vector<std::string> BypassList; // Joins the proxy bypass list using "\n" to make it into a single string. |