Chromium Code Reviews| Index: net/base/network_change_notifier_win.cc |
| diff --git a/net/base/network_change_notifier_win.cc b/net/base/network_change_notifier_win.cc |
| index e893329b3bd62cf570fe04be32aeceba8512c669..7e7ef73e9165df2a0f2b0ff2ed9a1cc527dee8a2 100644 |
| --- a/net/base/network_change_notifier_win.cc |
| +++ b/net/base/network_change_notifier_win.cc |
| @@ -318,6 +318,11 @@ void NetworkChangeNotifierWin::NotifyParentOfConnectionTypeChange() { |
| last_announced_offline_ = current_offline; |
| NotifyObserversOfConnectionTypeChange(); |
| + double max_bandwidth_mbps = 0.0; |
| + ConnectionType connection_type = CONNECTION_NONE; |
| + GetCurrentMaxBandwidthAndConnectionType(&max_bandwidth_mbps, |
| + &connection_type); |
| + NotifyObserversOfMaxBandwidthChange(connection_type, max_bandwidth_mbps); |
|
pauljensen
2015/09/15 18:17:40
these two function have opposite argument ordering
|
| } |
| } // namespace net |