diff options
Diffstat (limited to 'net/proxy/proxy_service.h')
-rw-r--r-- | net/proxy/proxy_service.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h index 715a9c2..ed02b03 100644 --- a/net/proxy/proxy_service.h +++ b/net/proxy/proxy_service.h @@ -222,12 +222,6 @@ class ProxyService : public base::RefCountedThreadSafe<ProxyService> { // Removes |req| from the list of pending requests. void RemovePendingRequest(PacRequest* req); - // Called to indicate that a PacRequest completed. The |config_id| parameter - // indicates the proxy configuration that was queried. |result_code| is OK - // if the PAC file could be downloaded and executed. Otherwise, it is an - // error code, indicating a bad proxy configuration. - void DidCompletePacRequest(int config_id, int result_code); - // Returns true if the URL passed in should not go through the proxy server. // 1. If the proxy settings say to bypass local names, and |IsLocalName(url)|. // 2. The URL matches one of the entities in the proxy bypass list. @@ -253,9 +247,6 @@ class ProxyService : public base::RefCountedThreadSafe<ProxyService> { // Increasing ID to give to the next ProxyConfig that we set. int next_config_id_; - // Indicates that the configuration is bad and should be ignored. - bool config_is_bad_; - // Indicates whether the ProxyResolver should be sent requests. bool should_use_proxy_resolver_; |