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

Unified Diff: net/proxy/proxy_info.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/proxy/proxy_info.h
diff --git a/net/proxy/proxy_info.h b/net/proxy/proxy_info.h
index 336cb3a58881c2982f4d1a4b4d10d5e16597cdf7..46b68b900739667dd1471ca18d1fec3b862d7175 100644
--- a/net/proxy/proxy_info.h
+++ b/net/proxy/proxy_info.h
@@ -90,20 +90,14 @@ class NET_EXPORT ProxyInfo {
}
// Returns true if this proxy info has no proxies left to try.
- bool is_empty() const {
- return proxy_list_.IsEmpty();
- }
+ bool is_empty() const { return proxy_list_.IsEmpty(); }
// Returns true if this proxy resolution is using a direct connection due to
// proxy bypass rules.
- bool did_bypass_proxy() const {
- return did_bypass_proxy_;
- }
+ bool did_bypass_proxy() const { return did_bypass_proxy_; }
// Returns true if the proxy resolution was done using a PAC script.
- bool did_use_pac_script() const {
- return did_use_pac_script_;
- }
+ bool did_use_pac_script() const { return did_use_pac_script_; }
// Returns the first valid proxy server. is_empty() must be false to be able
// to call this function.

Powered by Google App Engine
This is Rietveld 408576698