| 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 7a9d112961e869096df1e61ade01ec25ae9821ba..f9c8b53c89113cc51bcedcca340b967650670e0f 100644
|
| --- a/chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc
|
| +++ b/chrome/browser/ui/libgtk2ui/select_file_dialog_impl_gtk2.cc
|
| @@ -32,7 +32,7 @@ namespace {
|
| // Makes sure that .jpg also shows .JPG.
|
| gboolean FileFilterCaseInsensitive(const GtkFileFilterInfo* file_info,
|
| std::string* file_extension) {
|
| - return EndsWith(file_info->filename, *file_extension, false);
|
| + return base::EndsWith(file_info->filename, *file_extension, false);
|
| }
|
|
|
| // Deletes |data| when gtk_file_filter_add_custom() is done with it.
|
|
|