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

Unified Diff: net/cert/x509_certificate.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 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() == '.')
« 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