Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1919)

Side by Side Diff: chrome/browser/ui/views/select_file_dialog_extension_factory.h

Issue 11878031: Bring back the file dialogs for chrome AURA. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_
6 #define CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_ 6 #define CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_
7 7
8 #include "ui/base/dialogs/select_file_dialog.h" 8 #include "ui/shell_dialogs/select_file_dialog.h"
9 #include "ui/base/dialogs/select_file_dialog_factory.h" 9 #include "ui/shell_dialogs/select_file_dialog_factory.h"
10 10
11 class SelectFileDialogExtensionFactory : public ui::SelectFileDialogFactory { 11 class SelectFileDialogExtensionFactory : public ui::SelectFileDialogFactory {
12 public: 12 public:
13 SelectFileDialogExtensionFactory(); 13 SelectFileDialogExtensionFactory();
14 virtual ~SelectFileDialogExtensionFactory(); 14 virtual ~SelectFileDialogExtensionFactory();
15 15
16 private: 16 private:
17 // Override from ui::SelectFileDialogFactory: 17 // Override from ui::SelectFileDialogFactory:
18 virtual ui::SelectFileDialog* Create( 18 virtual ui::SelectFileDialog* Create(
19 ui::SelectFileDialog::Listener* listener, 19 ui::SelectFileDialog::Listener* listener,
20 ui::SelectFilePolicy* policy) OVERRIDE; 20 ui::SelectFilePolicy* policy) OVERRIDE;
21 21
22 DISALLOW_COPY_AND_ASSIGN(SelectFileDialogExtensionFactory); 22 DISALLOW_COPY_AND_ASSIGN(SelectFileDialogExtensionFactory);
23 }; 23 };
24 24
25 #endif // CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_ 25 #endif // CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698