| Index: net/proxy/proxy_service.h
|
| diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h
|
| index 942c6a4a0d8996d7a4c6eb9b8edb21e9ada29462..040a0f83a4d54bfe0ef3edd3f55e7e49c2695123 100644
|
| --- a/net/proxy/proxy_service.h
|
| +++ b/net/proxy/proxy_service.h
|
| @@ -97,7 +97,7 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
| ProxyResolver* resolver,
|
| NetLog* net_log);
|
|
|
| - virtual ~ProxyService();
|
| + ~ProxyService() override;
|
|
|
| // Used internally to handle PAC queries.
|
| // TODO(eroman): consider naming this simply "Request".
|
| @@ -375,14 +375,14 @@ class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver,
|
|
|
| // NetworkChangeNotifier::IPAddressObserver
|
| // When this is called, we re-fetch PAC scripts and re-run WPAD.
|
| - virtual void OnIPAddressChanged() override;
|
| + void OnIPAddressChanged() override;
|
|
|
| // NetworkChangeNotifier::DNSObserver
|
| // We respond as above.
|
| - virtual void OnDNSChanged() override;
|
| + void OnDNSChanged() override;
|
|
|
| // ProxyConfigService::Observer
|
| - virtual void OnProxyConfigChanged(
|
| + void OnProxyConfigChanged(
|
| const ProxyConfig& config,
|
| ProxyConfigService::ConfigAvailability availability) override;
|
|
|
|
|