| 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.
|
|
|