Index: chrome/browser/file_select_helper.cc |
diff --git a/chrome/browser/file_select_helper.cc b/chrome/browser/file_select_helper.cc |
index ba041c0b0d3a62c94ba8b95b6a972e9977e53c5a..168ee9b78e55d15896475d90d741e941ebd46f23 100644 |
--- a/chrome/browser/file_select_helper.cc |
+++ b/chrome/browser/file_select_helper.cc |
@@ -115,6 +115,15 @@ FileSelectHelper::~FileSelectHelper() { |
} |
} |
+void FileSelectHelper::DirectoryListerDispatchDelegate::OnListFile( |
+ const net::DirectoryLister::DirectoryListerData& data) { |
+ parent_->OnListFile(id_, data); |
+} |
+ |
+void FileSelectHelper::DirectoryListerDispatchDelegate::OnListDone(int error) { |
+ parent_->OnListDone(id_, error); |
+} |
+ |
void FileSelectHelper::FileSelected(const FilePath& path, |
int index, void* params) { |
FileSelectedWithExtraInfo(ui::SelectedFileInfo(path, path), index, params); |