Index: net/cert/x509_certificate.cc |
diff --git a/net/cert/x509_certificate.cc b/net/cert/x509_certificate.cc |
index c328904907896eb91eeebe607cc7c7babdc3734e..dc3cd80c7fd2c7a7b156e75235a68160e02ca215 100644 |
--- a/net/cert/x509_certificate.cc |
+++ b/net/cert/x509_certificate.cc |
@@ -618,7 +618,7 @@ bool X509Certificate::VerifyHostname( |
DVLOG(1) << "Bad name in cert: " << *it; |
continue; |
} |
- std::string presented_name(base::StringToLowerASCII(*it)); |
+ std::string presented_name(base::ToLowerASCII(*it)); |
// Remove trailing dot, if any. |
if (*presented_name.rbegin() == '.') |