Fix building on Windows

This commit is contained in:
Cheng Zhao 2015-09-03 20:07:29 +08:00
parent c81de98d22
commit 53b9d61831
5 changed files with 5 additions and 6 deletions

View file

@ -252,7 +252,7 @@ bool ShowSaveDialog(atom::NativeWindow* parent_window,
bool matched = false;
for (size_t i = 0; i < filter.second.size(); ++i) {
if (EndsWith(file_name, filter.second[i], false)) {
if (base::EndsWith(file_name, filter.second[i], false)) {
matched = true;
break;;
}