Index: chrome/browser/chromeos/network_state_notifier.cc |
diff --git a/chrome/browser/chromeos/network_state_notifier.cc b/chrome/browser/chromeos/network_state_notifier.cc |
index 3ee696c1bf8db805f5d03dbcde757311291297a9..52c96b43c20f6ce18f31b5b4e80c2c4fc1779e45 100644 |
--- a/chrome/browser/chromeos/network_state_notifier.cc |
+++ b/chrome/browser/chromeos/network_state_notifier.cc |
@@ -38,14 +38,14 @@ NetworkStateNotifier::NetworkStateNotifier() |
void NetworkStateNotifier::NetworkChanged(NetworkLibrary* cros) { |
DCHECK(CrosLibrary::Get()->EnsureLoaded()); |
- // Update the state 1 seconds later using UI thread. |
+ // Update the state 2 seconds later using UI thread. |
// See http://crosbug.com/4558 |
ChromeThread::PostDelayedTask( |
ChromeThread::UI, FROM_HERE, |
task_factory_.NewRunnableMethod( |
&NetworkStateNotifier::UpdateNetworkState, |
RetrieveState()), |
- 1000); |
+ 2000); |
} |
void NetworkStateNotifier::UpdateNetworkState( |