| Index: net/proxy/proxy_resolver_v8.cc
|
| diff --git a/net/proxy/proxy_resolver_v8.cc b/net/proxy/proxy_resolver_v8.cc
|
| index 9c9f421b91051ef0c739aa360490821963407ffb..9011875912234d2627a129b5311187ecb00d0ae9 100644
|
| --- a/net/proxy/proxy_resolver_v8.cc
|
| +++ b/net/proxy/proxy_resolver_v8.cc
|
| @@ -225,10 +225,9 @@ bool GetHostnameArgument(const v8::FunctionCallbackInfo<v8::Value>& args,
|
|
|
| // Otherwise try to convert it from IDN to punycode.
|
| const int kInitialBufferSize = 256;
|
| - url_canon::RawCanonOutputT<base::char16, kInitialBufferSize> punycode_output;
|
| - if (!url_canon::IDNToASCII(hostname_utf16.data(),
|
| - hostname_utf16.length(),
|
| - &punycode_output)) {
|
| + url::RawCanonOutputT<base::char16, kInitialBufferSize> punycode_output;
|
| + if (!url::IDNToASCII(hostname_utf16.data(), hostname_utf16.length(),
|
| + &punycode_output)) {
|
| return false;
|
| }
|
|
|
|
|