OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <string> | 5 #include <string> |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/location.h" | 9 #include "base/location.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 "NCNDefaultIPAddressChanged", | 204 "NCNDefaultIPAddressChanged", |
205 is_suppressed ? " (Suppressed)" : "" ), | 205 is_suppressed ? " (Suppressed)" : "" ), |
206 base::StringPrintf("%s -> %s", | 206 base::StringPrintf("%s -> %s", |
207 ip_address_.c_str(), | 207 ip_address_.c_str(), |
208 default_network->ip_address().c_str())); | 208 default_network->ip_address().c_str())); |
209 } | 209 } |
210 if (default_network->dns_servers() != dns_servers_) { | 210 if (default_network->dns_servers() != dns_servers_) { |
211 NET_LOG_EVENT( | 211 NET_LOG_EVENT( |
212 "NCNDefaultDNSServerChanged", | 212 "NCNDefaultDNSServerChanged", |
213 base::StringPrintf( | 213 base::StringPrintf( |
214 "%s -> %s", | 214 "%s -> %s", base::JoinString(dns_servers_, ",").c_str(), |
215 JoinString(dns_servers_, ",").c_str(), | 215 base::JoinString(default_network->dns_servers(), ",").c_str())); |
216 JoinString(default_network->dns_servers(), ",").c_str())); | |
217 *dns_changed = true; | 216 *dns_changed = true; |
218 } | 217 } |
219 | 218 |
220 connection_type_ = new_connection_type; | 219 connection_type_ = new_connection_type; |
221 service_path_ = default_network->path(); | 220 service_path_ = default_network->path(); |
222 ip_address_ = default_network->ip_address(); | 221 ip_address_ = default_network->ip_address(); |
223 dns_servers_ = default_network->dns_servers(); | 222 dns_servers_ = default_network->dns_servers(); |
224 double old_max_bandwidth = max_bandwidth_mbps_; | 223 double old_max_bandwidth = max_bandwidth_mbps_; |
225 max_bandwidth_mbps_ = | 224 max_bandwidth_mbps_ = |
226 GetMaxBandwidthForConnectionSubtype(GetConnectionSubtype( | 225 GetMaxBandwidthForConnectionSubtype(GetConnectionSubtype( |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 // produce a single signal when switching between network connections. | 299 // produce a single signal when switching between network connections. |
301 params.ip_address_offline_delay_ = base::TimeDelta::FromMilliseconds(4000); | 300 params.ip_address_offline_delay_ = base::TimeDelta::FromMilliseconds(4000); |
302 params.ip_address_online_delay_ = base::TimeDelta::FromMilliseconds(1000); | 301 params.ip_address_online_delay_ = base::TimeDelta::FromMilliseconds(1000); |
303 params.connection_type_offline_delay_ = | 302 params.connection_type_offline_delay_ = |
304 base::TimeDelta::FromMilliseconds(500); | 303 base::TimeDelta::FromMilliseconds(500); |
305 params.connection_type_online_delay_ = base::TimeDelta::FromMilliseconds(500); | 304 params.connection_type_online_delay_ = base::TimeDelta::FromMilliseconds(500); |
306 return params; | 305 return params; |
307 } | 306 } |
308 | 307 |
309 } // namespace chromeos | 308 } // namespace chromeos |
OLD | NEW |