diff options
Diffstat (limited to 'net/dns/dns_hosts.cc')
-rw-r--r-- | net/dns/dns_hosts.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dns/dns_hosts.cc b/net/dns/dns_hosts.cc index 5aa4aaa..e0a40a1 100644 --- a/net/dns/dns_hosts.cc +++ b/net/dns/dns_hosts.cc @@ -139,7 +139,7 @@ void ParseHosts(const std::string& contents, DnsHosts* dns_hosts) { bool ParseHostsFile(const base::FilePath& path, DnsHosts* dns_hosts) { dns_hosts->clear(); // Missing file indicates empty HOSTS. - if (!file_util::PathExists(path)) + if (!base::PathExists(path)) return true; int64 size; |