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

Unified Diff: net/cookies/cookie_constants.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/cert/x509_certificate.cc ('k') | net/cookies/parsed_cookie.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cookies/cookie_constants.cc
diff --git a/net/cookies/cookie_constants.cc b/net/cookies/cookie_constants.cc
index 1771c20e4bd160476038547155e97cf38726b62f..0afe6ef85802e88c41692e723d0e63ef7eaf625d 100644
--- a/net/cookies/cookie_constants.cc
+++ b/net/cookies/cookie_constants.cc
@@ -31,7 +31,7 @@ NET_EXPORT const std::string CookiePriorityToString(CookiePriority priority) {
NET_EXPORT CookiePriority StringToCookiePriority(const std::string& priority) {
std::string priority_comp(priority);
- StringToLowerASCII(&priority_comp);
+ base::StringToLowerASCII(&priority_comp);
if (priority_comp == kPriorityHigh)
return COOKIE_PRIORITY_HIGH;
« no previous file with comments | « net/cert/x509_certificate.cc ('k') | net/cookies/parsed_cookie.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698