| Index: chrome/browser/io_thread.cc
|
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
|
| index 177352e4ec4b68229e67af72f9493f46203288d3..525b28b2e10d0c8cf736250b70897d4e7f5cc55b 100644
|
| --- a/chrome/browser/io_thread.cc
|
| +++ b/chrome/browser/io_thread.cc
|
| @@ -333,7 +333,7 @@ class IOThread::LoggingNetworkChangeObserver
|
| }
|
|
|
| // NetworkChangeNotifier::IPAddressObserver implementation.
|
| - virtual void OnIPAddressChanged() OVERRIDE {
|
| + virtual void OnIPAddressChanged() override {
|
| VLOG(1) << "Observed a change to the network IP addresses";
|
|
|
| net_log_->AddGlobalEntry(net::NetLog::TYPE_NETWORK_IP_ADDRESSES_CHANGED);
|
| @@ -341,7 +341,7 @@ class IOThread::LoggingNetworkChangeObserver
|
|
|
| // NetworkChangeNotifier::ConnectionTypeObserver implementation.
|
| virtual void OnConnectionTypeChanged(
|
| - net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
|
| + net::NetworkChangeNotifier::ConnectionType type) override {
|
| std::string type_as_string =
|
| net::NetworkChangeNotifier::ConnectionTypeToString(type);
|
|
|
| @@ -355,7 +355,7 @@ class IOThread::LoggingNetworkChangeObserver
|
|
|
| // NetworkChangeNotifier::NetworkChangeObserver implementation.
|
| virtual void OnNetworkChanged(
|
| - net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
|
| + net::NetworkChangeNotifier::ConnectionType type) override {
|
| std::string type_as_string =
|
| net::NetworkChangeNotifier::ConnectionTypeToString(type);
|
|
|
| @@ -376,9 +376,9 @@ class SystemURLRequestContextGetter : public net::URLRequestContextGetter {
|
| explicit SystemURLRequestContextGetter(IOThread* io_thread);
|
|
|
| // Implementation for net::UrlRequestContextGetter.
|
| - virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE;
|
| + virtual net::URLRequestContext* GetURLRequestContext() override;
|
| virtual scoped_refptr<base::SingleThreadTaskRunner>
|
| - GetNetworkTaskRunner() const OVERRIDE;
|
| + GetNetworkTaskRunner() const override;
|
|
|
| protected:
|
| virtual ~SystemURLRequestContextGetter();
|
|
|