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