| Index: net/dns/dns_config_service.cc
|
| diff --git a/net/dns/dns_config_service.cc b/net/dns/dns_config_service.cc
|
| index f17e32b73048a08a4ec84f2ac1c84eeb2ef1795c..cf7797a9b052d2bfb89a1829b675a5082343b37a 100644
|
| --- a/net/dns/dns_config_service.cc
|
| +++ b/net/dns/dns_config_service.cc
|
| @@ -11,11 +11,12 @@
|
|
|
| namespace net {
|
|
|
| -// Default values are taken from glibc resolv.h.
|
| +// Default values are taken from glibc resolv.h except timeout which is set to
|
| +// 1 second to match Windows.
|
| DnsConfig::DnsConfig()
|
| : append_to_multi_label_name(true),
|
| ndots(1),
|
| - timeout(base::TimeDelta::FromSeconds(5)),
|
| + timeout(base::TimeDelta::FromSeconds(1)),
|
| attempts(2),
|
| rotate(false),
|
| edns0(false) {}
|
|
|