| Index: net/dns/host_resolver_impl.cc
|
| diff --git a/net/dns/host_resolver_impl.cc b/net/dns/host_resolver_impl.cc
|
| index d10949f23cd9ee91fbef9aa8e909985a715a1563..7039f7548820537a60d3c635eaec63a98ca8eb43 100644
|
| --- a/net/dns/host_resolver_impl.cc
|
| +++ b/net/dns/host_resolver_impl.cc
|
| @@ -1361,8 +1361,11 @@ class HostResolverImpl::Job : public PrioritizedDispatcher::Job {
|
| queue_time_after_change);
|
| }
|
|
|
| + bool system_only = key_.host_resolver_flags & HOST_RESOLVER_SYSTEM_ONLY;
|
| +
|
| // Caution: Job::Start must not complete synchronously.
|
| - if (had_dns_config_ && !ResemblesMulticastDNSName(key_.hostname)) {
|
| + if (!system_only && had_dns_config_ &&
|
| + !ResemblesMulticastDNSName(key_.hostname)) {
|
| StartDnsTask();
|
| } else {
|
| StartProcTask();
|
|
|