Index: net/proxy/proxy_list.h |
diff --git a/net/proxy/proxy_list.h b/net/proxy/proxy_list.h |
index d2e4e260522e7cfdd4dca091c7ba798cabac84c3..aa477d2083834fd7cf5d1bb3c305c600c5926931 100644 |
--- a/net/proxy/proxy_list.h |
+++ b/net/proxy/proxy_list.h |
@@ -97,14 +97,14 @@ class NET_EXPORT_PRIVATE ProxyList { |
// retry after |retry_delay| if positive, and will use the default proxy retry |
// duration otherwise. It may reconsider the proxy beforehand if |reconsider| |
// is true. Additionally updates |proxy_retry_info| with |
- // |another_proxy_to_bypass| if non-empty. |net_error| should contain the |
- // network error countered when this proxy was tried, or OK if the proxy retry |
- // info is being updated for a non-network related reason (e.g. local policy). |
+ // |additional_proxies_to_bypass|. |net_error| should contain the network |
+ // error countered when this proxy was tried, or OK if the proxy retry info is |
+ // being updated for a non-network related reason (e.g. local policy). |
void UpdateRetryInfoOnFallback( |
ProxyRetryInfoMap* proxy_retry_info, |
base::TimeDelta retry_delay, |
bool reconsider, |
- const ProxyServer& another_proxy_to_bypass, |
+ const std::vector<ProxyServer>& additional_proxies_to_bypass, |
int net_error, |
const BoundNetLog& net_log) const; |