| Index: net/base/network_config_watcher_mac.cc
|
| diff --git a/net/base/network_config_watcher_mac.cc b/net/base/network_config_watcher_mac.cc
|
| index 464ebfa9712f1ba4d73bb7059666a684d6830d53..cd7f53a7c29e6cd3e147bfc6e49139a27e8bce14 100644
|
| --- a/net/base/network_config_watcher_mac.cc
|
| +++ b/net/base/network_config_watcher_mac.cc
|
| @@ -71,12 +71,12 @@ void NetworkConfigWatcherMacThread::Init() {
|
|
|
| // TODO(willchan): Look to see if there's a better signal for when it's ok to
|
| // initialize this, rather than just delaying it by a fixed time.
|
| - const int kInitializationDelayMS = 1000;
|
| + const base::TimeDelta kInitializationDelay = base::TimeDelta::FromSeconds(1);
|
| message_loop()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&NetworkConfigWatcherMacThread::InitNotifications,
|
| weak_factory_.GetWeakPtr()),
|
| - kInitializationDelayMS);
|
| + kInitializationDelay);
|
| }
|
|
|
| void NetworkConfigWatcherMacThread::CleanUp() {
|
|
|