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

Unified Diff: chrome/browser/ui/views/select_file_dialog_extension_factory.h

Issue 10698168: Part 3 of Move SelectFileDialog implementation to ui/base/dialogs/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More namespace to force rebuild. Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
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..ea0da6e30b1a7b6071d70145e0b415ef45bbb258
--- /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();
+
+ private:
+ // Override from ui::SelectFileDialogFactory:
+ virtual ui::SelectFileDialog* Create(
+ ui::SelectFileDialog::Listener* listener,
+ ui::SelectFilePolicy* policy) OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(SelectFileDialogExtensionFactory);
+};
+
+#endif // CHROME_BROWSER_UI_VIEWS_SELECT_FILE_DIALOG_EXTENSION_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698