Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Unified Diff: net/cert/x509_certificate.cc

Issue 1282363003: Convert remaining StringToLowerASCII to ToLowerASCII (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/sdch_manager.cc ('k') | net/cookies/cookie_constants.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() == '.')
« no previous file with comments | « net/base/sdch_manager.cc ('k') | net/cookies/cookie_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698