| Index: net/dns/mock_host_resolver.cc
|
| diff --git a/net/dns/mock_host_resolver.cc b/net/dns/mock_host_resolver.cc
|
| index 100c2850b7b9f976645917cc98c5bb4e6b598fca..01030aa353740634a8401d7f072e2a1991365f32 100644
|
| --- a/net/dns/mock_host_resolver.cc
|
| +++ b/net/dns/mock_host_resolver.cc
|
| @@ -175,9 +175,9 @@ int MockHostResolverBase::ResolveFromIPLiteralOrCache(const RequestInfo& info,
|
| info.host_resolver_flags());
|
| const HostCache::Entry* entry = cache_->Lookup(key, base::TimeTicks::Now());
|
| if (entry) {
|
| - rv = entry->error;
|
| + rv = entry->error();
|
| if (rv == OK)
|
| - *addresses = AddressList::CopyWithPort(entry->addrlist, info.port());
|
| + *addresses = AddressList::CopyWithPort(entry->addresses(), info.port());
|
| }
|
| }
|
| return rv;
|
|
|