| Index: chrome/browser/views/shell_dialogs_win.cc
|
| diff --git a/chrome/browser/views/shell_dialogs_win.cc b/chrome/browser/views/shell_dialogs_win.cc
|
| index 8cb28a63eee9cac7b384fdc4c65023ec7788d7ef..afa7caee79af74e0068595f17ee38a1aa015f5c0 100644
|
| --- a/chrome/browser/views/shell_dialogs_win.cc
|
| +++ b/chrome/browser/views/shell_dialogs_win.cc
|
| @@ -190,14 +190,26 @@ class SelectFileDialogImpl : public SelectFileDialog,
|
| explicit SelectFileDialogImpl(Listener* listener);
|
|
|
| // SelectFileDialog implementation:
|
| - 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();
|
| + }
|
| virtual bool IsRunning(HWND owning_hwnd) const;
|
| virtual void ListenerDestroyed();
|
|
|
|
|