diff options
Diffstat (limited to 'chrome/browser/views/shell_dialogs_win.cc')
-rw-r--r-- | chrome/browser/views/shell_dialogs_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/shell_dialogs_win.cc b/chrome/browser/views/shell_dialogs_win.cc index a90b7fb..e09fa73 100644 --- a/chrome/browser/views/shell_dialogs_win.cc +++ b/chrome/browser/views/shell_dialogs_win.cc @@ -846,7 +846,7 @@ bool SelectFileDialogImpl::RunOpenFileDialog( // Use lpstrInitialDir to specify the initial directory if (!path->empty()) { bool is_dir; - file_util::FileInfo file_info; + base::PlatformFileInfo file_info; if (file_util::GetFileInfo(*path, &file_info)) is_dir = file_info.is_directory; else |