Chromium Code Reviews| Index: chrome/browser/ui/gtk/dialogs_common.h |
| =================================================================== |
| --- chrome/browser/ui/gtk/dialogs_common.h (revision 101188) |
| +++ chrome/browser/ui/gtk/dialogs_common.h (working copy) |
| @@ -12,6 +12,7 @@ |
| #include <string> |
| #include <vector> |
| +#include "base/memory/ref_counted.h" |
|
Evan Martin
2011/09/15 20:53:38
Why is this needed now?
dfilimon
2011/09/15 21:58:14
Done.
|
| #include "chrome/browser/ui/shell_dialogs.h" |
| // Shared implementation SelectFileDialog used by SelectFileDialogImplGTK |
| @@ -19,6 +20,8 @@ |
| public: |
| // Factory method for creating a GTK-styled SelectFileDialogImpl |
| static SelectFileDialogImpl* NewSelectFileDialogImplGTK(Listener* listener); |
| + // Factory method for creating a KDE-styled SelectFileDialogImpl |
| + static SelectFileDialogImpl* NewSelectFileDialogImplKDE(Listener* listener); |
| // BaseShellDialog implementation. |
| virtual bool IsRunning(gfx::NativeWindow parent_window) const; |
| @@ -67,4 +70,3 @@ |
| }; |
| #endif // CHROME_BROWSER_UI_GTK_DIALOGS_COMMON_H_ |
| - |