| Index: net/http/http_content_disposition.cc
|
| diff --git a/net/http/http_content_disposition.cc b/net/http/http_content_disposition.cc
|
| index 3dbf234b9435a53dca5158151d944cb298737953..68412cfa08d1a81234217c7c31cce900629fb603 100644
|
| --- a/net/http/http_content_disposition.cc
|
| +++ b/net/http/http_content_disposition.cc
|
| @@ -113,9 +113,9 @@ bool DecodeWord(const std::string& encoded_word,
|
| base::CodepageToUTF16(encoded_word, referrer_charset.c_str(),
|
| base::OnStringConversionError::FAIL,
|
| &utf16_output)) {
|
| - *output = UTF16ToUTF8(utf16_output);
|
| + *output = base::UTF16ToUTF8(utf16_output);
|
| } else {
|
| - *output = WideToUTF8(base::SysNativeMBToWide(encoded_word));
|
| + *output = base::WideToUTF8(base::SysNativeMBToWide(encoded_word));
|
| }
|
| }
|
|
|
|
|