OLD | NEW |
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 COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ | 5 #ifndef COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ |
6 #define COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ | 6 #define COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 // Update the position of dialog |widget| against |dialog_host|. This is used to | 35 // Update the position of dialog |widget| against |dialog_host|. This is used to |
36 // reposition widgets e.g. when the host dimensions change. | 36 // reposition widgets e.g. when the host dimensions change. |
37 void UpdateWebContentsModalDialogPosition( | 37 void UpdateWebContentsModalDialogPosition( |
38 views::Widget* widget, | 38 views::Widget* widget, |
39 web_modal::WebContentsModalDialogHost* dialog_host); | 39 web_modal::WebContentsModalDialogHost* dialog_host); |
40 | 40 |
41 void UpdateWidgetModalDialogPosition( | 41 void UpdateWidgetModalDialogPosition( |
42 views::Widget* widget, | 42 views::Widget* widget, |
43 web_modal::ModalDialogHost* dialog_host); | 43 web_modal::ModalDialogHost* dialog_host); |
44 | 44 |
| 45 // Shows the dialog with a new SingleWebContentsDialogManager. The dialog will |
| 46 // notify via WillClose() when it is being destroyed. |
| 47 void ShowModalDialog(gfx::NativeWindow dialog, |
| 48 content::WebContents* web_contents); |
| 49 |
45 // Calls CreateWebModalDialogViews, shows the dialog, and returns its widget. | 50 // Calls CreateWebModalDialogViews, shows the dialog, and returns its widget. |
46 views::Widget* ShowWebModalDialogViews( | 51 views::Widget* ShowWebModalDialogViews( |
47 views::WidgetDelegate* dialog, | 52 views::WidgetDelegate* dialog, |
48 content::WebContents* initiator_web_contents); | 53 content::WebContents* initiator_web_contents); |
49 | 54 |
50 // Create a widget for |dialog| that is modal to |web_contents|. | 55 // Create a widget for |dialog| that is modal to |web_contents|. |
51 // The modal type of |dialog->GetModalType()| must be ui::MODAL_TYPE_CHILD. | 56 // The modal type of |dialog->GetModalType()| must be ui::MODAL_TYPE_CHILD. |
52 views::Widget* CreateWebModalDialogViews(views::WidgetDelegate* dialog, | 57 views::Widget* CreateWebModalDialogViews(views::WidgetDelegate* dialog, |
53 content::WebContents* web_contents); | 58 content::WebContents* web_contents); |
54 | 59 |
55 // Create a widget for |dialog| that has a modality given by | 60 // Create a widget for |dialog| that has a modality given by |
56 // |dialog->GetModalType()|. The modal type must be either | 61 // |dialog->GetModalType()|. The modal type must be either |
57 // ui::MODAL_TYPE_SYSTEM or ui::MODAL_TYPE_WINDOW. This places the | 62 // ui::MODAL_TYPE_SYSTEM or ui::MODAL_TYPE_WINDOW. This places the |
58 // dialog appropriately if |parent| is a valid browser window. | 63 // dialog appropriately if |parent| is a valid browser window. |
59 views::Widget* CreateBrowserModalDialogViews(views::DialogDelegate* dialog, | 64 views::Widget* CreateBrowserModalDialogViews(views::DialogDelegate* dialog, |
60 gfx::NativeWindow parent); | 65 gfx::NativeWindow parent); |
61 | 66 |
62 } // namespace constrained window | 67 } // namespace constrained_window |
63 | 68 |
64 #endif // COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ | 69 #endif // COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ |
OLD | NEW |