| 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 82fa6482bf86b476eed4087416a6447ce1a20239..ee6507c7ffde34917abe7a2b58d6fe80bb2abb9a 100644
|
| --- a/content/child/ftp_directory_listing_response_delegate.cc
|
| +++ b/content/child/ftp_directory_listing_response_delegate.cc
|
| @@ -94,7 +94,8 @@ void FtpDirectoryListingResponseDelegate::OnCompletedRequest() {
|
|
|
| // Skip the current and parent directory entries in the listing. Our header
|
| // always includes them.
|
| - if (EqualsASCII(entry.name, ".") || EqualsASCII(entry.name, ".."))
|
| + if (base::EqualsASCII(entry.name, ".") ||
|
| + base::EqualsASCII(entry.name, ".."))
|
| continue;
|
|
|
| bool is_directory = (entry.type == FtpDirectoryListingEntry::DIRECTORY);
|
|
|