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 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "build/build_config.h" |
12 #include "components/web_modal/single_web_contents_dialog_manager.h" | 13 #include "components/web_modal/single_web_contents_dialog_manager.h" |
13 #include "content/public/browser/web_contents_observer.h" | 14 #include "content/public/browser/web_contents_observer.h" |
14 #include "content/public/browser/web_contents_user_data.h" | 15 #include "content/public/browser/web_contents_user_data.h" |
15 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
16 | 17 |
17 namespace web_modal { | 18 namespace web_modal { |
18 | 19 |
19 class WebContentsModalDialogManagerDelegate; | 20 class WebContentsModalDialogManagerDelegate; |
20 | 21 |
21 // Per-WebContents class to manage WebContents-modal dialogs. | 22 // Per-WebContents class to manage WebContents-modal dialogs. |
22 class WebContentsModalDialogManager | 23 class WebContentsModalDialogManager |
23 : public SingleWebContentsDialogManagerDelegate, | 24 : public SingleWebContentsDialogManagerDelegate, |
24 public content::WebContentsObserver, | 25 public content::WebContentsObserver, |
25 public content::WebContentsUserData<WebContentsModalDialogManager> { | 26 public content::WebContentsUserData<WebContentsModalDialogManager> { |
26 public: | 27 public: |
27 ~WebContentsModalDialogManager() override; | 28 ~WebContentsModalDialogManager() override; |
28 | 29 |
29 WebContentsModalDialogManagerDelegate* delegate() const { return delegate_; } | 30 WebContentsModalDialogManagerDelegate* delegate() const { return delegate_; } |
30 void SetDelegate(WebContentsModalDialogManagerDelegate* d); | 31 void SetDelegate(WebContentsModalDialogManagerDelegate* d); |
31 | 32 |
| 33 #if defined(OS_MACOSX) |
| 34 // Note: This method is not defined inside components/web_modal/ as its |
| 35 // definition (needed for Cocoa builds) depends on chrome/browser/ui/cocoa/. |
32 static SingleWebContentsDialogManager* CreateNativeWebModalManager( | 36 static SingleWebContentsDialogManager* CreateNativeWebModalManager( |
33 gfx::NativeWindow dialog, | 37 gfx::NativeWindow dialog, |
34 SingleWebContentsDialogManagerDelegate* native_delegate); | 38 SingleWebContentsDialogManagerDelegate* native_delegate); |
35 | 39 #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 | 40 |
40 // Allow clients to supply their own native dialog manager. Suitable for | 41 // Allow clients to supply their own native dialog manager. Suitable for |
41 // bubble clients. | 42 // bubble clients. |
42 void ShowDialogWithManager( | 43 void ShowDialogWithManager( |
43 gfx::NativeWindow dialog, | 44 gfx::NativeWindow dialog, |
44 std::unique_ptr<SingleWebContentsDialogManager> manager); | 45 std::unique_ptr<SingleWebContentsDialogManager> manager); |
45 | 46 |
46 // Returns true if any dialogs are active and not closed. | 47 // Returns true if any dialogs are active and not closed. |
47 bool IsDialogActive() const; | 48 bool IsDialogActive() const; |
48 | 49 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 117 |
117 // True while closing the dialogs on WebContents close. | 118 // True while closing the dialogs on WebContents close. |
118 bool closing_all_dialogs_; | 119 bool closing_all_dialogs_; |
119 | 120 |
120 DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager); | 121 DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager); |
121 }; | 122 }; |
122 | 123 |
123 } // namespace web_modal | 124 } // namespace web_modal |
124 | 125 |
125 #endif // COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ | 126 #endif // COMPONENTS_WEB_MODAL_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_ |
OLD | NEW |