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

Unified Diff: chrome/browser/ui/chrome_select_file_policy.h

Issue 10667026: Start consolidating cross-port file selection code into ui/base/dialogs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos Created 8 years, 6 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
« no previous file with comments | « chrome/browser/ui/certificate_dialogs.cc ('k') | chrome/browser/ui/chrome_select_file_policy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/chrome_select_file_policy.h
diff --git a/chrome/browser/ui/chrome_select_file_policy.h b/chrome/browser/ui/chrome_select_file_policy.h
new file mode 100644
index 0000000000000000000000000000000000000000..10e0602aaea0c531ade260a0febc423cef9009ee
--- /dev/null
+++ b/chrome/browser/ui/chrome_select_file_policy.h
@@ -0,0 +1,33 @@
+// 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_CHROME_SELECT_FILE_POLICY_H_
+#define CHROME_BROWSER_UI_CHROME_SELECT_FILE_POLICY_H_
+
+#include "base/basictypes.h"
+#include "base/callback_forward.h"
+#include "base/compiler_specific.h"
+#include "ui/base/dialogs/select_file_policy.h"
+
+namespace content {
+class WebContents;
+}
+
+// A chrome specific SelectFilePolicy that checks local_state().
+class ChromeSelectFilePolicy : public ui::SelectFilePolicy {
+ public:
+ explicit ChromeSelectFilePolicy(content::WebContents* source_contents);
sky 2012/06/28 21:01:40 Document ownership.
+ virtual ~ChromeSelectFilePolicy();
+
+ // Overridden from ui::SelectFilePolicy:
+ virtual bool CanOpenSelectFileDialog() OVERRIDE;
+ virtual void SelectFileDenied() OVERRIDE;
+
+ private:
+ content::WebContents* source_contents_;
+
+ DISALLOW_COPY_AND_ASSIGN(ChromeSelectFilePolicy);
+};
+
+#endif // CHROME_BROWSER_UI_CHROME_SELECT_FILE_POLICY_H_
« no previous file with comments | « chrome/browser/ui/certificate_dialogs.cc ('k') | chrome/browser/ui/chrome_select_file_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698