| 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/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "chromeos/dbus/dbus_thread_manager.h" | 11 #include "chromeos/dbus/dbus_thread_manager.h" |
| 12 #include "chromeos/network/network_change_notifier_chromeos.h" | 12 #include "chromeos/network/network_change_notifier_chromeos.h" |
| 13 #include "chromeos/network/network_event_log.h" | 13 #include "chromeos/network/network_event_log.h" |
| 14 #include "chromeos/network/network_state.h" | 14 #include "chromeos/network/network_state.h" |
| 15 #include "chromeos/network/network_state_handler.h" | 15 #include "chromeos/network/network_state_handler.h" |
| 16 #include "net/base/network_change_notifier.h" | |
| 17 #include "net/dns/dns_config_service_posix.h" | 16 #include "net/dns/dns_config_service_posix.h" |
| 18 #include "third_party/cros_system_api/dbus/service_constants.h" | 17 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 19 | 18 |
| 20 namespace chromeos { | 19 namespace chromeos { |
| 21 | 20 |
| 22 // DNS config services on Chrome OS are signalled by the network state handler | 21 // DNS config services on Chrome OS are signalled by the network state handler |
| 23 // rather than relying on watching files in /etc. | 22 // rather than relying on watching files in /etc. |
| 24 class NetworkChangeNotifierChromeos::DnsConfigService | 23 class NetworkChangeNotifierChromeos::DnsConfigService |
| 25 : public net::internal::DnsConfigServicePosix { | 24 : public net::internal::DnsConfigServicePosix { |
| 26 public: | 25 public: |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 // produce a single signal when switching between network connections. | 244 // produce a single signal when switching between network connections. |
| 246 params.ip_address_offline_delay_ = base::TimeDelta::FromMilliseconds(4000); | 245 params.ip_address_offline_delay_ = base::TimeDelta::FromMilliseconds(4000); |
| 247 params.ip_address_online_delay_ = base::TimeDelta::FromMilliseconds(1000); | 246 params.ip_address_online_delay_ = base::TimeDelta::FromMilliseconds(1000); |
| 248 params.connection_type_offline_delay_ = | 247 params.connection_type_offline_delay_ = |
| 249 base::TimeDelta::FromMilliseconds(500); | 248 base::TimeDelta::FromMilliseconds(500); |
| 250 params.connection_type_online_delay_ = base::TimeDelta::FromMilliseconds(500); | 249 params.connection_type_online_delay_ = base::TimeDelta::FromMilliseconds(500); |
| 251 return params; | 250 return params; |
| 252 } | 251 } |
| 253 | 252 |
| 254 } // namespace chromeos | 253 } // namespace chromeos |
| OLD | NEW |