| 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 37c56a58f4304f70b7df587a64c388d3e8a96a86..e9b3496a9535996a4cf66aeb2ed56b43c3e3fabd 100644
|
| --- a/net/tools/net_watcher/net_watcher.cc
|
| +++ b/net/tools/net_watcher/net_watcher.cc
|
| @@ -91,25 +91,25 @@ class NetWatcher :
|
| virtual ~NetWatcher() {}
|
|
|
| // net::NetworkChangeNotifier::IPAddressObserver implementation.
|
| - virtual void OnIPAddressChanged() OVERRIDE {
|
| + virtual void OnIPAddressChanged() override {
|
| LOG(INFO) << "OnIPAddressChanged()";
|
| }
|
|
|
| // net::NetworkChangeNotifier::ConnectionTypeObserver implementation.
|
| virtual void OnConnectionTypeChanged(
|
| - net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
|
| + net::NetworkChangeNotifier::ConnectionType type) override {
|
| LOG(INFO) << "OnConnectionTypeChanged("
|
| << ConnectionTypeToString(type) << ")";
|
| }
|
|
|
| // net::NetworkChangeNotifier::DNSObserver implementation.
|
| - virtual void OnDNSChanged() OVERRIDE {
|
| + virtual void OnDNSChanged() override {
|
| LOG(INFO) << "OnDNSChanged()";
|
| }
|
|
|
| // net::NetworkChangeNotifier::NetworkChangeObserver implementation.
|
| virtual void OnNetworkChanged(
|
| - net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
|
| + net::NetworkChangeNotifier::ConnectionType type) override {
|
| LOG(INFO) << "OnNetworkChanged("
|
| << ConnectionTypeToString(type) << ")";
|
| }
|
| @@ -117,7 +117,7 @@ class NetWatcher :
|
| // net::ProxyConfigService::Observer implementation.
|
| virtual void OnProxyConfigChanged(
|
| const net::ProxyConfig& config,
|
| - net::ProxyConfigService::ConfigAvailability availability) OVERRIDE {
|
| + net::ProxyConfigService::ConfigAvailability availability) override {
|
| LOG(INFO) << "OnProxyConfigChanged("
|
| << ProxyConfigToString(config) << ", "
|
| << ConfigAvailabilityToString(availability) << ")";
|
|
|