| 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 be7e771b3224978afb8ac6f0ea07d9dcc01bee8e..192ad7a0762eaa7af73a97420501fc8beae6a2db 100644
|
| --- a/net/dns/dns_config_service_win.cc
|
| +++ b/net/dns/dns_config_service_win.cc
|
| @@ -146,8 +146,8 @@ bool ParseDomainASCII(const base::string16& widestr, std::string* domain) {
|
|
|
| // Otherwise try to convert it from IDN to punycode.
|
| const int kInitialBufferSize = 256;
|
| - url_canon::RawCanonOutputT<base::char16, kInitialBufferSize> punycode;
|
| - if (!url_canon::IDNToASCII(widestr.data(), widestr.length(), &punycode))
|
| + url::RawCanonOutputT<base::char16, kInitialBufferSize> punycode;
|
| + if (!url::IDNToASCII(widestr.data(), widestr.length(), &punycode))
|
| return false;
|
|
|
| // |punycode_output| should now be ASCII; convert it to a std::string.
|
|
|