| Index: net/proxy/proxy_service.h
|
| diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h
|
| index 36b4589f55be4a6ed0d21a899e6745596c5a2272..4efea32f892b7177b40649b1f28d667e92a23d4d 100644
|
| --- a/net/proxy/proxy_service.h
|
| +++ b/net/proxy/proxy_service.h
|
| @@ -186,14 +186,10 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| void ResetConfigService(ProxyConfigService* new_proxy_config_service);
|
|
|
| // Returns the last configuration fetched from ProxyConfigService.
|
| - const ProxyConfig& fetched_config() {
|
| - return fetched_config_;
|
| - }
|
| + const ProxyConfig& fetched_config() { return fetched_config_; }
|
|
|
| // Returns the current configuration being used by ProxyConfigService.
|
| - const ProxyConfig& config() {
|
| - return config_;
|
| - }
|
| + const ProxyConfig& config() { return config_; }
|
|
|
| // Returns the map of proxies which have been marked as "bad".
|
| const ProxyRetryInfoMap& proxy_retry_info() const {
|
| @@ -201,9 +197,7 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| }
|
|
|
| // Clears the list of bad proxy servers that has been cached.
|
| - void ClearBadProxiesCache() {
|
| - proxy_retry_info_.clear();
|
| - }
|
| + void ClearBadProxiesCache() { proxy_retry_info_.clear(); }
|
|
|
| // Forces refetching the proxy configuration, and applying it.
|
| // This re-does everything from fetching the system configuration,
|
| @@ -260,9 +254,7 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| // of the default internal PacPollPolicy used by ProxyService.
|
| static scoped_ptr<PacPollPolicy> CreateDefaultPacPollPolicy();
|
|
|
| - void set_quick_check_enabled(bool value) {
|
| - quick_check_enabled_ = value;
|
| - }
|
| + void set_quick_check_enabled(bool value) { quick_check_enabled_ = value; }
|
|
|
| bool quick_check_enabled() const { return quick_check_enabled_; }
|
|
|
| @@ -364,10 +356,9 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| void InitializeUsingLastFetchedConfig();
|
|
|
| // Start the initialization skipping past the "decision" phase.
|
| - void InitializeUsingDecidedConfig(
|
| - int decider_result,
|
| - ProxyResolverScriptData* script_data,
|
| - const ProxyConfig& effective_config);
|
| + void InitializeUsingDecidedConfig(int decider_result,
|
| + ProxyResolverScriptData* script_data,
|
| + const ProxyConfig& effective_config);
|
|
|
| // NetworkChangeNotifier::IPAddressObserver
|
| // When this is called, we re-fetch PAC scripts and re-run WPAD.
|
|
|