| Index: net/proxy/proxy_service.h
|
| diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h
|
| index c00cada4f7e86cc07fc20c33cf1ae88d9c085658..663ffd04bd19423f6d90be633de063104c9d6f52 100644
|
| --- a/net/proxy/proxy_service.h
|
| +++ b/net/proxy/proxy_service.h
|
| @@ -145,53 +145,50 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| // We use the three possible proxy access types in the following order,
|
| // doing fallback if one doesn't work. See "pac_script_decider.h"
|
| // for the specifics.
|
| // 1. WPAD auto-detection
|
| // 2. PAC URL
|
| // 3. named proxy
|
| //
|
| // Profiling information for the request is saved to |net_log| if non-NULL.
|
| int ResolveProxy(const GURL& url,
|
| const std::string& method,
|
| - int load_flags,
|
| ProxyInfo* results,
|
| const CompletionCallback& callback,
|
| PacRequest** pac_request,
|
| ProxyDelegate* proxy_delegate,
|
| const BoundNetLog& net_log);
|
|
|
| // Returns true if the proxy information could be determined without spawning
|
| // an asynchronous task. Otherwise, |result| is unmodified.
|
| bool TryResolveProxySynchronously(const GURL& raw_url,
|
| const std::string& method,
|
| - int load_flags,
|
| ProxyInfo* result,
|
| ProxyDelegate* proxy_delegate,
|
| const BoundNetLog& net_log);
|
|
|
| // This method is called after a failure to connect or resolve a host name.
|
| // It gives the proxy service an opportunity to reconsider the proxy to use.
|
| // The |results| parameter contains the results returned by an earlier call
|
| // to ResolveProxy. The |net_error| parameter contains the network error
|
| // code associated with the failure. See "net/base/net_error_list.h" for a
|
| // list of possible values. The semantics of this call are otherwise
|
| // similar to ResolveProxy.
|
| //
|
| // NULL can be passed for |pac_request| if the caller will not need to
|
| // cancel the request.
|
| //
|
| // Returns ERR_FAILED if there is not another proxy config to try.
|
| //
|
| // Profiling information for the request is saved to |net_log| if non-NULL.
|
| int ReconsiderProxyAfterError(const GURL& url,
|
| const std::string& method,
|
| - int load_flags,
|
| int net_error,
|
| ProxyInfo* results,
|
| const CompletionCallback& callback,
|
| PacRequest** pac_request,
|
| ProxyDelegate* proxy_delegate,
|
| const BoundNetLog& net_log);
|
|
|
| // Explicitly trigger proxy fallback for the given |results| by updating our
|
| // list of bad proxies to include the first entry of |results|, and,
|
| // additional bad proxies (can be none). Will retry after |retry_delay| if
|
| @@ -349,30 +346,28 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| void ApplyProxyConfigIfAvailable();
|
|
|
| // Callback for when the proxy resolver has been initialized with a
|
| // PAC script.
|
| void OnInitProxyResolverComplete(int result);
|
|
|
| // Returns ERR_IO_PENDING if the request cannot be completed synchronously.
|
| // Otherwise it fills |result| with the proxy information for |url|.
|
| // Completing synchronously means we don't need to query ProxyResolver.
|
| int TryToCompleteSynchronously(const GURL& url,
|
| - int load_flags,
|
| ProxyDelegate* proxy_delegate,
|
| ProxyInfo* result);
|
|
|
| // Identical to ResolveProxy, except that |callback| is permitted to be null.
|
| // if |callback.is_null()|, this function becomes a thin wrapper around
|
| // |TryToCompleteSynchronously|.
|
| int ResolveProxyHelper(const GURL& url,
|
| const std::string& method,
|
| - int load_flags,
|
| ProxyInfo* results,
|
| const CompletionCallback& callback,
|
| PacRequest** pac_request,
|
| ProxyDelegate* proxy_delegate,
|
| const BoundNetLog& net_log);
|
|
|
| // Cancels all of the requests sent to the ProxyResolver. These will be
|
| // restarted when calling SetReady().
|
| void SuspendAllPendingRequests();
|
|
|
| @@ -384,21 +379,20 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| bool ContainsPendingRequest(PacRequest* req);
|
|
|
| // Removes |req| from the list of pending requests.
|
| void RemovePendingRequest(PacRequest* req);
|
|
|
| // Called when proxy resolution has completed (either synchronously or
|
| // asynchronously). Handles logging the result, and cleaning out
|
| // bad entries from the results list.
|
| int DidFinishResolvingProxy(const GURL& url,
|
| const std::string& method,
|
| - int load_flags,
|
| ProxyDelegate* proxy_delegate,
|
| ProxyInfo* result,
|
| int result_code,
|
| const BoundNetLog& net_log,
|
| base::TimeTicks start_time,
|
| bool script_executed);
|
|
|
| // Start initialization using |fetched_config_|.
|
| void InitializeUsingLastFetchedConfig();
|
|
|
|
|