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

Unified Diff: content/renderer/media/cache_util.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 | « content/renderer/accessibility/blink_ax_tree_source.cc ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/cache_util.cc
diff --git a/content/renderer/media/cache_util.cc b/content/renderer/media/cache_util.cc
index 2114ddd5189fab7ff2a7d5c837bca95b957bc136..d79e69230baa78aa9f8634de6a8040214b4e399e 100644
--- a/content/renderer/media/cache_util.cc
+++ b/content/renderer/media/cache_util.cc
@@ -48,7 +48,7 @@ uint32 GetReasonsForUncacheability(const WebURLResponse& response) {
std::string cache_control_header =
response.httpHeaderField("cache-control").utf8();
- StringToLowerASCII(&cache_control_header);
+ base::StringToLowerASCII(&cache_control_header);
if (cache_control_header.find("no-cache") != std::string::npos)
reasons |= kNoCache;
if (cache_control_header.find("no-store") != std::string::npos)
« no previous file with comments | « content/renderer/accessibility/blink_ax_tree_source.cc ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698