Index: ui/shell_dialogs/select_file_dialog_win.cc |
diff --git a/ui/shell_dialogs/select_file_dialog_win.cc b/ui/shell_dialogs/select_file_dialog_win.cc |
index ed5597d233ad9a1d3b5d579ae2ba746462703621..1f8e36458bcd2a95dd264fca6ff05c881e70449e 100644 |
--- a/ui/shell_dialogs/select_file_dialog_win.cc |
+++ b/ui/shell_dialogs/select_file_dialog_win.cc |
@@ -86,7 +86,7 @@ bool CallGetSaveFileName(OPENFILENAME* ofn) { |
// Distinguish directories from regular files. |
bool IsDirectory(const base::FilePath& path) { |
base::PlatformFileInfo file_info; |
- return file_util::GetFileInfo(path, &file_info) ? |
+ return base::GetFileInfo(path, &file_info) ? |
file_info.is_directory : path.EndsWithSeparator(); |
} |