Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(723)

Unified Diff: net/base/proxy_delegate.h

Issue 649763002: git cl format the second third of the net/base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698