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

Unified Diff: ppapi/proxy/file_chooser_resource.cc

Issue 1282363003: Convert remaining StringToLowerASCII to ToLowerASCII (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 | « pdf/pdfium/pdfium_page.cc ('k') | remoting/signaling/jid_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/file_chooser_resource.cc
diff --git a/ppapi/proxy/file_chooser_resource.cc b/ppapi/proxy/file_chooser_resource.cc
index 324f11b207f8897589233361806b3fc842aacd3e..9f949c0f4a863e1ddebfc4cd559dbef4bbf1469e 100644
--- a/ppapi/proxy/file_chooser_resource.cc
+++ b/ppapi/proxy/file_chooser_resource.cc
@@ -93,8 +93,7 @@ void FileChooserResource::PopulateAcceptTypes(
continue;
if (type.find_first_of('/') == std::string::npos && type[0] != '.')
continue;
- base::StringToLowerASCII(&type);
- output->push_back(type);
+ output->push_back(base::ToLowerASCII(type));
}
}
« no previous file with comments | « pdf/pdfium/pdfium_page.cc ('k') | remoting/signaling/jid_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698