OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ | 5 #ifndef COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ |
6 #define COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ | 6 #define COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 public: | 26 public: |
27 ~WebContentsModalDialogManager() override; | 27 ~WebContentsModalDialogManager() override; |
28 | 28 |
29 WebContentsModalDialogManagerDelegate* delegate() const { return delegate_; } | 29 WebContentsModalDialogManagerDelegate* delegate() const { return delegate_; } |
30 void SetDelegate(WebContentsModalDialogManagerDelegate* d); | 30 void SetDelegate(WebContentsModalDialogManagerDelegate* d); |
31 | 31 |
32 static SingleWebContentsDialogManager* CreateNativeWebModalManager( | 32 static SingleWebContentsDialogManager* CreateNativeWebModalManager( |
33 gfx::NativeWindow dialog, | 33 gfx::NativeWindow dialog, |
34 SingleWebContentsDialogManagerDelegate* native_delegate); | 34 SingleWebContentsDialogManagerDelegate* native_delegate); |
35 | 35 |
36 // Shows the dialog as a web contents modal dialog. The dialog will notify via | |
37 // WillClose() when it is being destroyed. | |
38 void ShowModalDialog(gfx::NativeWindow dialog); | |
39 | |
40 // Allow clients to supply their own native dialog manager. Suitable for | 36 // Allow clients to supply their own native dialog manager. Suitable for |
41 // bubble clients. | 37 // bubble clients. |
42 void ShowDialogWithManager( | 38 void ShowDialogWithManager( |
43 gfx::NativeWindow dialog, | 39 gfx::NativeWindow dialog, |
44 std::unique_ptr<SingleWebContentsDialogManager> manager); | 40 std::unique_ptr<SingleWebContentsDialogManager> manager); |
45 | 41 |
46 // Returns true if any dialogs are active and not closed. | 42 // Returns true if any dialogs are active and not closed. |
47 bool IsDialogActive() const; | 43 bool IsDialogActive() const; |
48 | 44 |
49 // Focus the topmost modal dialog. IsDialogActive() must be true when calling | 45 // Focus the topmost modal dialog. IsDialogActive() must be true when calling |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 112 |
117 // True while closing the dialogs on WebContents close. | 113 // True while closing the dialogs on WebContents close. |
118 bool closing_all_dialogs_; | 114 bool closing_all_dialogs_; |
119 | 115 |
120 DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager); | 116 DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager); |
121 }; | 117 }; |
122 | 118 |
123 } // namespace web_modal | 119 } // namespace web_modal |
124 | 120 |
125 #endif // COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ | 121 #endif // COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ |
OLD | NEW |