| 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 e4f0ae4f46cd5ef981f1ae2c2054a66fe524f9f9..6baccf474bad5922281710d92245f4f0d514203d 100644
|
| --- a/ui/shell_dialogs/select_file_dialog_win.cc
|
| +++ b/ui/shell_dialogs/select_file_dialog_win.cc
|
| @@ -85,7 +85,7 @@ bool CallGetSaveFileName(OPENFILENAME* ofn) {
|
|
|
| // Distinguish directories from regular files.
|
| bool IsDirectory(const base::FilePath& path) {
|
| - base::PlatformFileInfo file_info;
|
| + base::File::Info file_info;
|
| return base::GetFileInfo(path, &file_info) ?
|
| file_info.is_directory : path.EndsWithSeparator();
|
| }
|
|
|