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

Unified Diff: components/nacl/renderer/ppb_nacl_private_impl.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 | « components/nacl/renderer/nexe_load_manager.cc ('k') | components/os_crypt/ie7_password_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/renderer/ppb_nacl_private_impl.cc
diff --git a/components/nacl/renderer/ppb_nacl_private_impl.cc b/components/nacl/renderer/ppb_nacl_private_impl.cc
index ca14cdc366cc19ade1b80ac48e87ed14caf0a43e..91236062540caca7a53df976e2b16736df328d34 100644
--- a/components/nacl/renderer/ppb_nacl_private_impl.cc
+++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
@@ -1587,7 +1587,7 @@ class PexeDownloader : public blink::WebURLLoaderClient {
for (std::vector<std::string>::const_iterator it = values.begin();
it != values.end();
++it) {
- if (StringToLowerASCII(*it) == "no-store")
+ if (base::StringToLowerASCII(*it) == "no-store")
has_no_store_header = true;
}
« no previous file with comments | « components/nacl/renderer/nexe_load_manager.cc ('k') | components/os_crypt/ie7_password_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698