Index: ppapi/proxy/file_chooser_resource.cc |
diff --git a/ppapi/proxy/file_chooser_resource.cc b/ppapi/proxy/file_chooser_resource.cc |
index 06425686cf7a469a028a1a2c182e4220e4ace093..324f11b207f8897589233361806b3fc842aacd3e 100644 |
--- a/ppapi/proxy/file_chooser_resource.cc |
+++ b/ppapi/proxy/file_chooser_resource.cc |
@@ -93,7 +93,7 @@ void FileChooserResource::PopulateAcceptTypes( |
continue; |
if (type.find_first_of('/') == std::string::npos && type[0] != '.') |
continue; |
- StringToLowerASCII(&type); |
+ base::StringToLowerASCII(&type); |
output->push_back(type); |
} |
} |