| Index: chrome/browser/gtk/dialogs_gtk.cc
|
| diff --git a/chrome/browser/gtk/dialogs_gtk.cc b/chrome/browser/gtk/dialogs_gtk.cc
|
| index 08b484fe649833e6d2f8e4dddd6540f1c1a265e4..e16cd9f3fb5cddb2ed0cf8c410394c0ae6beb97a 100644
|
| --- a/chrome/browser/gtk/dialogs_gtk.cc
|
| +++ b/chrome/browser/gtk/dialogs_gtk.cc
|
| @@ -39,14 +39,26 @@ class SelectFileDialogImpl : public SelectFileDialog {
|
|
|
| // SelectFileDialog implementation.
|
| // |params| is user data we pass back via the Listener interface.
|
| - virtual void SelectFile(Type type,
|
| - const string16& title,
|
| - const FilePath& default_path,
|
| - const FileTypeInfo* file_types,
|
| - int file_type_index,
|
| - const FilePath::StringType& default_extension,
|
| - gfx::NativeWindow owning_window,
|
| - void* params);
|
| + virtual void SelectFile(
|
| + Type type,
|
| + const string16& title,
|
| + const FilePath& default_path,
|
| + const FileTypeInfo* file_types,
|
| + int file_type_index,
|
| + const FilePath::StringType& default_extension,
|
| + gfx::NativeWindow owning_window,
|
| + void* params);
|
| + virtual void SelectFileDialogImpl::SelectFileInTab(
|
| + Type type,
|
| + const string16& title,
|
| + const FilePath& default_path,
|
| + const FileTypeInfo* file_types,
|
| + int file_type_index,
|
| + const FilePath::StringType& default_extension,
|
| + TabContents* owning_tab,
|
| + void* params) {
|
| + NOTIMPLEMENTED();
|
| + }
|
|
|
| private:
|
| // Add the filters from |file_types_| to |chooser|.
|
|
|