| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h
|
| index c8b06e8c64d4d47e09a832cf95c806e87135ed9b..68f152e67178306031f2565194a18aaae061b728 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.h
|
| @@ -92,7 +92,7 @@ class DataReductionProxySettings
|
| static bool IsProxyKeySetOnCommandLine();
|
|
|
| DataReductionProxySettings(DataReductionProxyParams* params);
|
| - virtual ~DataReductionProxySettings();
|
| + ~DataReductionProxySettings() override;
|
|
|
| DataReductionProxyParams* params() const {
|
| return params_.get();
|
| @@ -179,7 +179,7 @@ class DataReductionProxySettings
|
| ContentLengthList GetDailyContentLengths(const char* pref_name);
|
|
|
| // net::URLFetcherDelegate:
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| protected:
|
| void InitPrefMembers();
|
| @@ -269,7 +269,7 @@ class DataReductionProxySettings
|
| TestSetProxyConfigsHoldback);
|
|
|
| // NetworkChangeNotifier::IPAddressObserver:
|
| - virtual void OnIPAddressChanged() override;
|
| + void OnIPAddressChanged() override;
|
|
|
| void OnProxyEnabledPrefChange();
|
| void OnProxyAlternativeEnabledPrefChange();
|
|
|