diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-09 01:20:28 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-09 01:20:28 +0000 |
commit | 546409d853d4dbc6742ccba0876babae0c920b55 (patch) | |
tree | bc9953f5c7deb94b3024beebd0738c765f690a1e /net/base | |
parent | 76de012886c078d82323a0edc39368c752120d35 (diff) | |
download | chromium_src-546409d853d4dbc6742ccba0876babae0c920b55.zip chromium_src-546409d853d4dbc6742ccba0876babae0c920b55.tar.gz chromium_src-546409d853d4dbc6742ccba0876babae0c920b55.tar.bz2 |
Increase the limit on number of NotifyAddrChange failures
we record. In the past two weeks, I've only seen one recovery
in the histograms. I'm hoping we just aren't waiting long enough.
R=eroman
BUG=69198
Review URL: http://codereview.chromium.org/8437065
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109157 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/network_change_notifier_win.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/base/network_change_notifier_win.cc b/net/base/network_change_notifier_win.cc index 590bfca..e130744 100644 --- a/net/base/network_change_notifier_win.cc +++ b/net/base/network_change_notifier_win.cc @@ -195,9 +195,9 @@ void NetworkChangeNotifierWin::WatchForAddressChange() { // TODO(mmenke): If the UMA histograms indicate that this fixes // http://crbug.com/69198, remove this histogram and consider reducing the // retry interval. - if (sequential_failures_ == 100) { - UMA_HISTOGRAM_COUNTS_100("Net.NotifyAddrChangeFailures", - sequential_failures_); + if (sequential_failures_ == 2000) { + UMA_HISTOGRAM_COUNTS_10000("Net.NotifyAddrChangeFailures", + sequential_failures_); } MessageLoop::current()->PostDelayedTask( @@ -214,9 +214,9 @@ void NetworkChangeNotifierWin::WatchForAddressChange() { if (sequential_failures_ > 0) NotifyObservers(); - if (sequential_failures_ < 100) { - UMA_HISTOGRAM_COUNTS_100("Net.NotifyAddrChangeFailures", - sequential_failures_); + if (sequential_failures_ < 2000) { + UMA_HISTOGRAM_COUNTS_10000("Net.NotifyAddrChangeFailures", + sequential_failures_); } is_watching_ = true; |