| Index: net/tools/net_watcher/net_watcher.cc
|
| diff --git a/net/tools/net_watcher/net_watcher.cc b/net/tools/net_watcher/net_watcher.cc
|
| index e9b3496a9535996a4cf66aeb2ed56b43c3e3fabd..b6cf393ee841f51f6eefa4092b7ad98fd61cc601 100644
|
| --- a/net/tools/net_watcher/net_watcher.cc
|
| +++ b/net/tools/net_watcher/net_watcher.cc
|
| @@ -88,34 +88,30 @@ class NetWatcher :
|
| public:
|
| NetWatcher() {}
|
|
|
| - virtual ~NetWatcher() {}
|
| + ~NetWatcher() override {}
|
|
|
| // net::NetworkChangeNotifier::IPAddressObserver implementation.
|
| - virtual void OnIPAddressChanged() override {
|
| - LOG(INFO) << "OnIPAddressChanged()";
|
| - }
|
| + void OnIPAddressChanged() override { LOG(INFO) << "OnIPAddressChanged()"; }
|
|
|
| // net::NetworkChangeNotifier::ConnectionTypeObserver implementation.
|
| - virtual void OnConnectionTypeChanged(
|
| + void OnConnectionTypeChanged(
|
| net::NetworkChangeNotifier::ConnectionType type) override {
|
| LOG(INFO) << "OnConnectionTypeChanged("
|
| << ConnectionTypeToString(type) << ")";
|
| }
|
|
|
| // net::NetworkChangeNotifier::DNSObserver implementation.
|
| - virtual void OnDNSChanged() override {
|
| - LOG(INFO) << "OnDNSChanged()";
|
| - }
|
| + void OnDNSChanged() override { LOG(INFO) << "OnDNSChanged()"; }
|
|
|
| // net::NetworkChangeNotifier::NetworkChangeObserver implementation.
|
| - virtual void OnNetworkChanged(
|
| + void OnNetworkChanged(
|
| net::NetworkChangeNotifier::ConnectionType type) override {
|
| LOG(INFO) << "OnNetworkChanged("
|
| << ConnectionTypeToString(type) << ")";
|
| }
|
|
|
| // net::ProxyConfigService::Observer implementation.
|
| - virtual void OnProxyConfigChanged(
|
| + void OnProxyConfigChanged(
|
| const net::ProxyConfig& config,
|
| net::ProxyConfigService::ConfigAvailability availability) override {
|
| LOG(INFO) << "OnProxyConfigChanged("
|
|
|