summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/html_dialog_window_controller_cppsafe.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/cocoa/html_dialog_window_controller_cppsafe.h')
-rw-r--r--chrome/browser/ui/cocoa/html_dialog_window_controller_cppsafe.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/html_dialog_window_controller_cppsafe.h b/chrome/browser/ui/cocoa/html_dialog_window_controller_cppsafe.h
new file mode 100644
index 0000000..dd3b809
--- /dev/null
+++ b/chrome/browser/ui/cocoa/html_dialog_window_controller_cppsafe.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2009 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_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_CPPSAFE_H_
+#define CHROME_BROWSER_UI_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_CPPSAFE_H_
+#pragma once
+
+#include "gfx/native_widget_types.h"
+
+// We declare this in a separate file that is safe for including in C++ code.
+
+// TODO(akalin): It would be nice if there were a platform-agnostic way to
+// create a browser-independent HTML dialog. However, this would require
+// some invasive changes on the Windows/Linux side. Remove this file once
+// We have this platform-agnostic API.
+
+namespace html_dialog_window_controller {
+
+// Creates and shows an HtmlDialogWindowController with the given
+// delegate and profile. The window is automatically destroyed when it is
+// closed. Returns the created window.
+//
+// Make sure to use the returned window only when you know it is safe
+// to do so, i.e. before OnDialogClosed() is called on the delegate.
+gfx::NativeWindow ShowHtmlDialog(
+ HtmlDialogUIDelegate* delegate, Profile* profile);
+
+} // namespace html_dialog_window_controller
+
+#endif // CHROME_BROWSER_UI_COCOA_HTML_DIALOG_WINDOW_CONTROLLER_CPPSAFE_H_
+