Index: net/ftp/ftp_network_transaction.cc |
diff --git a/net/ftp/ftp_network_transaction.cc b/net/ftp/ftp_network_transaction.cc |
index 7820715647585e86d4052363d870bc26c8b3a28c..4cbde2725b0b8c1f9bd2601f40b58dd0321a60f8 100644 |
--- a/net/ftp/ftp_network_transaction.cc |
+++ b/net/ftp/ftp_network_transaction.cc |
@@ -831,7 +831,7 @@ int FtpNetworkTransaction::ProcessResponseSYST( |
// comparisons easily. If it is not ASCII, we leave the system type |
// as unknown. |
if (base::IsStringASCII(line)) { |
- line = StringToLowerASCII(line); |
+ line = base::StringToLowerASCII(line); |
// Remove all whitespace, to correctly handle cases like fancy "V M S" |
// response instead of "VMS". |