Chromium Code Reviews| Index: chrome/browser/ui/views/select_file_dialog_extension_factory.h |
| diff --git a/chrome/browser/ui/views/select_file_dialog_extension_factory.h b/chrome/browser/ui/views/select_file_dialog_extension_factory.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fd08292214869e72e3b2fa9a09bbcfc263ab5c46 |
| --- /dev/null |
| +++ b/chrome/browser/ui/views/select_file_dialog_extension_factory.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_ |
| +#define CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_ |
| + |
| +#include "ui/base/dialogs/select_file_dialog.h" |
| +#include "ui/base/dialogs/select_file_dialog_factory.h" |
| + |
| +class SelectFileDialogExtensionFactory : public ui::SelectFileDialogFactory { |
| + public: |
| + SelectFileDialogExtensionFactory(); |
| + virtual ~SelectFileDialogExtensionFactory(); |
| + |
| + // Override from ui::SelectFileDialogFactory: |
|
Ben Goodger (Google)
2012/07/12 02:56:23
private?
|
| + virtual ui::SelectFileDialog* Create( |
| + ui::SelectFileDialog::Listener* listener, |
| + ui::SelectFilePolicy* policy) OVERRIDE; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(SelectFileDialogExtensionFactory); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_ |