Index: net/dns/dns_config_service_win.cc |
diff --git a/net/dns/dns_config_service_win.cc b/net/dns/dns_config_service_win.cc |
index fe97b74f73e37507a6f92804ea21748670d4c7b9..15ae22227f7ccf55755f89cf66dd69b3184baa8a 100644 |
--- a/net/dns/dns_config_service_win.cc |
+++ b/net/dns/dns_config_service_win.cc |
@@ -153,7 +153,7 @@ bool ParseDomainASCII(const base::string16& widestr, std::string* domain) { |
// |punycode_output| should now be ASCII; convert it to a std::string. |
// (We could use UTF16ToASCII() instead, but that requires an extra string |
// copy. Since ASCII is a subset of UTF8 the following is equivalent). |
- bool success = UTF16ToUTF8(punycode.data(), punycode.length(), domain); |
+ bool success = base::UTF16ToUTF8(punycode.data(), punycode.length(), domain); |
DCHECK(success); |
DCHECK(IsStringASCII(*domain)); |
return success && !domain->empty(); |