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 11 matching lines...) Expand all Loading... | |
22 class WebContentsModalDialogManager | 22 class WebContentsModalDialogManager |
23 : public SingleWebContentsDialogManagerDelegate, | 23 : public SingleWebContentsDialogManagerDelegate, |
24 public content::WebContentsObserver, | 24 public content::WebContentsObserver, |
25 public content::WebContentsUserData<WebContentsModalDialogManager> { | 25 public content::WebContentsUserData<WebContentsModalDialogManager> { |
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 #if defined(OS_MACOSX) | |
32 static SingleWebContentsDialogManager* CreateNativeWebModalManager( | 33 static SingleWebContentsDialogManager* CreateNativeWebModalManager( |
tapted
2016/07/19 09:29:41
nit: add a note here that this is not defined in t
Patti Lor
2016/07/28 01:29:31
Done.
| |
33 gfx::NativeWindow dialog, | 34 gfx::NativeWindow dialog, |
34 SingleWebContentsDialogManagerDelegate* native_delegate); | 35 SingleWebContentsDialogManagerDelegate* native_delegate); |
35 | 36 #endif |
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 | 37 |
40 // Allow clients to supply their own native dialog manager. Suitable for | 38 // Allow clients to supply their own native dialog manager. Suitable for |
41 // bubble clients. | 39 // bubble clients. |
42 void ShowDialogWithManager( | 40 void ShowDialogWithManager( |
43 gfx::NativeWindow dialog, | 41 gfx::NativeWindow dialog, |
44 std::unique_ptr<SingleWebContentsDialogManager> manager); | 42 std::unique_ptr<SingleWebContentsDialogManager> manager); |
45 | 43 |
46 // Returns true if any dialogs are active and not closed. | 44 // Returns true if any dialogs are active and not closed. |
47 bool IsDialogActive() const; | 45 bool IsDialogActive() const; |
48 | 46 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 | 114 |
117 // True while closing the dialogs on WebContents close. | 115 // True while closing the dialogs on WebContents close. |
118 bool closing_all_dialogs_; | 116 bool closing_all_dialogs_; |
119 | 117 |
120 DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager); | 118 DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager); |
121 }; | 119 }; |
122 | 120 |
123 } // namespace web_modal | 121 } // namespace web_modal |
124 | 122 |
125 #endif // COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ | 123 #endif // COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ |
OLD | NEW |