| Index: net/base/proxy_delegate.h
|
| diff --git a/net/base/proxy_delegate.h b/net/base/proxy_delegate.h
|
| index c16549c3cc8fb71b078401c9cb29a95f5b76706e..2bf65403647c48a76172cb63433b0bb68b88d150 100644
|
| --- a/net/base/proxy_delegate.h
|
| +++ b/net/base/proxy_delegate.h
|
| @@ -23,11 +23,9 @@ class URLRequest;
|
| // Delegate for setting up a connection.
|
| class NET_EXPORT ProxyDelegate {
|
| public:
|
| - ProxyDelegate() {
|
| - }
|
| + ProxyDelegate() {}
|
|
|
| - virtual ~ProxyDelegate() {
|
| - }
|
| + virtual ~ProxyDelegate() {}
|
|
|
| // Called as the proxy is being resolved for |url|. Allows the delegate to
|
| // override the proxy resolution decision made by ProxyService. The delegate
|
| @@ -41,8 +39,7 @@ class NET_EXPORT ProxyDelegate {
|
| // 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;
|
| + virtual void OnFallback(const ProxyServer& bad_proxy, int net_error) = 0;
|
|
|
| // Called after a proxy connection. Allows the delegate to read/write
|
| // |headers| before they get sent out. |headers| is valid only until
|
| @@ -65,7 +62,6 @@ class NET_EXPORT ProxyDelegate {
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(ProxyDelegate);
|
| };
|
| -
|
| }
|
|
|
| #endif // NET_BASE_PROXY_DELEGATE_H_
|
|
|