| Index: ppapi/proxy/file_chooser_resource.cc
|
| diff --git a/ppapi/proxy/file_chooser_resource.cc b/ppapi/proxy/file_chooser_resource.cc
|
| index 9847e295c9cf336770172daa1140027276c28935..06425686cf7a469a028a1a2c182e4220e4ace093 100644
|
| --- a/ppapi/proxy/file_chooser_resource.cc
|
| +++ b/ppapi/proxy/file_chooser_resource.cc
|
| @@ -84,7 +84,7 @@ void FileChooserResource::PopulateAcceptTypes(
|
|
|
| for (size_t i = 0; i < type_list.size(); ++i) {
|
| std::string type = type_list[i];
|
| - TrimWhitespaceASCII(type, TRIM_ALL, &type);
|
| + base::TrimWhitespaceASCII(type, base::TRIM_ALL, &type);
|
|
|
| // If the type is a single character, it definitely cannot be valid. In the
|
| // case of a file extension it would be a single ".". In the case of a MIME
|
|
|