| Index: chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc
|
| diff --git a/chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc b/chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc
|
| index 0797df7cd3f73ef31ddc2fcaca741b007b245dc0..cfd6955ee3ad1ba180b48c30a2f365698f2d6754 100644
|
| --- a/chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc
|
| +++ b/chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc
|
| @@ -34,8 +34,7 @@
|
| // Makes sure that .jpg also shows .JPG.
|
| gboolean FileFilterCaseInsensitive(const GtkFileFilterInfo* file_info,
|
| std::string* file_extension) {
|
| - return base::EndsWith(file_info->filename, *file_extension,
|
| - base::CompareCase::INSENSITIVE_ASCII);
|
| + return base::EndsWith(file_info->filename, *file_extension, false);
|
| }
|
|
|
| // Deletes |data| when gtk_file_filter_add_custom() is done with it.
|
|
|