| Index: net/ftp/ftp_directory_listing_parser_os2.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_os2.cc b/net/ftp/ftp_directory_listing_parser_os2.cc
|
| index 094a9bdb8d8475e50b008d670249d909a619c231..a393d32926037949ef1f7d5c77c6e0dcf31c5e1e 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_os2.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_os2.cc
|
| @@ -40,12 +40,12 @@ bool ParseFtpDirectoryListingOS2(
|
| FtpDirectoryListingEntry entry;
|
| if (!base::StringToInt64(columns[0], &entry.size))
|
| return false;
|
| - if (EqualsASCII(columns[1], "DIR")) {
|
| + if (base::EqualsASCII(columns[1], "DIR")) {
|
| if (entry.size != 0)
|
| return false;
|
| entry.type = FtpDirectoryListingEntry::DIRECTORY;
|
| entry.size = -1;
|
| - } else if (EqualsASCII(columns[1], "A")) {
|
| + } else if (base::EqualsASCII(columns[1], "A")) {
|
| entry.type = FtpDirectoryListingEntry::FILE;
|
| if (entry.size < 0)
|
| return false;
|
|
|