| Index: content/child/ftp_directory_listing_response_delegate.cc
|
| diff --git a/content/child/ftp_directory_listing_response_delegate.cc b/content/child/ftp_directory_listing_response_delegate.cc
|
| index cc700ae667f266a4f366db889a370179eb99f5b1..e6e7feb0edac6013e474f3812cbbdff869020bb6 100644
|
| --- a/content/child/ftp_directory_listing_response_delegate.cc
|
| +++ b/content/child/ftp_directory_listing_response_delegate.cc
|
| @@ -34,7 +34,7 @@ namespace {
|
| base::string16 ConvertPathToUTF16(const std::string& path) {
|
| // Per RFC 2640, FTP servers should use UTF-8 or its proper subset ASCII,
|
| // but many old FTP servers use legacy encodings. Try UTF-8 first.
|
| - if (IsStringUTF8(path))
|
| + if (base::IsStringUTF8(path))
|
| return base::UTF8ToUTF16(path);
|
|
|
| // Try detecting the encoding. The sample is rather small though, so it may
|
|
|