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

Unified Diff: components/nacl/renderer/nexe_load_manager.cc

Issue 1279123004: Replace ToLower calls to the new format (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 | « components/mime_util/mime_util.cc ('k') | components/nacl/renderer/ppb_nacl_private_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/renderer/nexe_load_manager.cc
diff --git a/components/nacl/renderer/nexe_load_manager.cc b/components/nacl/renderer/nexe_load_manager.cc
index b7c99689f1a21643db563d48b5b03d3403552cd5..2494820fa5e206dab2b1c09a7a1d325f323eb737 100644
--- a/components/nacl/renderer/nexe_load_manager.cc
+++ b/components/nacl/renderer/nexe_load_manager.cc
@@ -343,7 +343,7 @@ void NexeLoadManager::InitializePlugin(
}
// Store mime_type_ at initialization time since we make it lowercase.
- mime_type_ = base::StringToLowerASCII(LookupAttribute(args_, kTypeAttribute));
+ mime_type_ = base::ToLowerASCII(LookupAttribute(args_, kTypeAttribute));
}
void NexeLoadManager::ReportStartupOverhead() const {
« no previous file with comments | « components/mime_util/mime_util.cc ('k') | components/nacl/renderer/ppb_nacl_private_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698