| Index: net/base/proxy_delegate.h
|
| diff --git a/net/base/proxy_delegate.h b/net/base/proxy_delegate.h
|
| index 3026a41bada6e9fdef410d3f53581e8521d268ab..ab6b2445f54bb3a4005a43b137e13110496ff5ee 100644
|
| --- a/net/base/proxy_delegate.h
|
| +++ b/net/base/proxy_delegate.h
|
| @@ -31,21 +31,20 @@ class NET_EXPORT ProxyDelegate {
|
| virtual ~ProxyDelegate() {
|
| }
|
|
|
| // Called as the proxy is being resolved for |url| for a |method| request.
|
| // The caller may pass an empty string to get method agnostic resoulution.
|
| // Allows the delegate to override the proxy resolution decision made by
|
| // ProxyService. The delegate may override the decision by modifying the
|
| // ProxyInfo |result|.
|
| virtual void OnResolveProxy(const GURL& url,
|
| const std::string& method,
|
| - int load_flags,
|
| const ProxyService& proxy_service,
|
| ProxyInfo* result) = 0;
|
|
|
| // Called when use of |bad_proxy| fails due to |net_error|. |net_error| is
|
| // the network error encountered, if any, and OK if the fallback was
|
| // for a reason other than a network error (e.g. the proxy service was
|
| // explicitly directed to skip a proxy).
|
| virtual void OnFallback(const ProxyServer& bad_proxy,
|
| int net_error) = 0;
|
|
|
|
|