| 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 29 matching lines...) Expand all Loading... |
| 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 // Calls CreateWebModalDialogViews, shows the dialog, and returns its widget. | 45 // Calls CreateWebModalDialogViews, shows the dialog, and returns its widget. |
| 46 views::Widget* ShowWebModalDialogViews( | 46 views::Widget* ShowWebModalDialogViews( |
| 47 views::WidgetDelegate* dialog, | 47 views::WidgetDelegate* dialog, |
| 48 content::WebContents* initiator_web_contents); | 48 content::WebContents* initiator_web_contents); |
| 49 | 49 |
| 50 #if defined(OS_MACOSX) |
| 51 // Like ShowWebModalDialogViews, but used to show a native dialog "sheet" on |
| 52 // Mac. Sheets are always modal to their parent window. To make them tab-modal, |
| 53 // this will parent the sheet off an invisible window that is tab-modal. |
| 54 views::Widget* ShowWebModalDialogWithOverlayViews( |
| 55 views::WidgetDelegate* dialog, |
| 56 content::WebContents* initiator_web_contents); |
| 57 #endif |
| 58 |
| 50 // Create a widget for |dialog| that is modal to |web_contents|. | 59 // Create a widget for |dialog| that is modal to |web_contents|. |
| 51 // The modal type of |dialog->GetModalType()| must be ui::MODAL_TYPE_CHILD. | 60 // The modal type of |dialog->GetModalType()| must be ui::MODAL_TYPE_CHILD. |
| 52 views::Widget* CreateWebModalDialogViews(views::WidgetDelegate* dialog, | 61 views::Widget* CreateWebModalDialogViews(views::WidgetDelegate* dialog, |
| 53 content::WebContents* web_contents); | 62 content::WebContents* web_contents); |
| 54 | 63 |
| 55 // Create a widget for |dialog| that has a modality given by | 64 // Create a widget for |dialog| that has a modality given by |
| 56 // |dialog->GetModalType()|. The modal type must be either | 65 // |dialog->GetModalType()|. The modal type must be either |
| 57 // ui::MODAL_TYPE_SYSTEM or ui::MODAL_TYPE_WINDOW. This places the | 66 // ui::MODAL_TYPE_SYSTEM or ui::MODAL_TYPE_WINDOW. This places the |
| 58 // dialog appropriately if |parent| is a valid browser window. | 67 // dialog appropriately if |parent| is a valid browser window. |
| 59 views::Widget* CreateBrowserModalDialogViews(views::DialogDelegate* dialog, | 68 views::Widget* CreateBrowserModalDialogViews(views::DialogDelegate* dialog, |
| 60 gfx::NativeWindow parent); | 69 gfx::NativeWindow parent); |
| 61 | 70 |
| 62 } // namespace constrained window | 71 } // namespace constrained window |
| 63 | 72 |
| 64 #endif // COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ | 73 #endif // COMPONENTS_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_VIEWS_H_ |
| OLD | NEW |