blob: e14b05f0fd7e0470a1151071255e1b4caf2bdd82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_
#define CHROME_BROWSER_UI_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_
#include <deque>
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/native_web_contents_modal_dialog_manager.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
#include "ui/gfx/native_widget_types.h"
class WebContentsModalDialog;
class WebContentsModalDialogManagerDelegate;
// Per-WebContents class to manage WebContents-modal dialogs.
class WebContentsModalDialogManager
: public NativeWebContentsModalDialogManagerDelegate,
public content::WebContentsObserver,
public content::WebContentsUserData<WebContentsModalDialogManager> {
public:
virtual ~WebContentsModalDialogManager();
WebContentsModalDialogManagerDelegate* delegate() const { return delegate_; }
void set_delegate(WebContentsModalDialogManagerDelegate* d) { delegate_ = d; }
static NativeWebContentsModalDialogManager* CreateNativeManager(
NativeWebContentsModalDialogManagerDelegate* native_delegate);
// Adds the given dialog to the list of child dialogs. The dialog will notify
// via WillClose() when it is being destroyed.
void AddDialog(NativeWebContentsModalDialog dialog);
// Blocks/unblocks interaction with renderer process.
void BlockWebContentsInteraction(bool blocked);
// Returns true if a dialog is currently being shown.
bool IsShowingDialog() const;
// Focus the topmost modal dialog. IsShowingDialog() must be true when
// calling this function.
void FocusTopmostDialog();
// Overriden from NativeWebContentsModalDialogManagerDelegate:
// Called when a WebContentsModalDialogs we own is about to be closed.
virtual void WillClose(NativeWebContentsModalDialog dialog) OVERRIDE;
// For testing.
class TestApi {
public:
explicit TestApi(WebContentsModalDialogManager* manager)
: manager_(manager) {}
void CloseAllDialogs() { manager_->CloseAllDialogs(); }
void ResetNativeManager(NativeWebContentsModalDialogManager* delegate) {
manager_->native_manager_.reset(delegate);
}
private:
WebContentsModalDialogManager* manager_;
DISALLOW_COPY_AND_ASSIGN(TestApi);
};
private:
explicit WebContentsModalDialogManager(content::WebContents* web_contents);
friend class content::WebContentsUserData<WebContentsModalDialogManager>;
typedef std::deque<NativeWebContentsModalDialog> WebContentsModalDialogList;
// Returns the number of dialogs in this tab.
size_t dialog_count() const { return child_dialogs_.size(); }
// Return an iterator for the first dialog in this web contents.
WebContentsModalDialogList::iterator dialog_begin() {
return child_dialogs_.begin();
}
// Return an iterator for the last dialog in this web contents.
WebContentsModalDialogList::iterator dialog_end() {
return child_dialogs_.end();
}
// Closes all WebContentsModalDialogs.
void CloseAllDialogs();
// Overridden from content::WebContentsObserver:
virtual void DidNavigateMainFrame(
const content::LoadCommittedDetails& details,
const content::FrameNavigateParams& params) OVERRIDE;
virtual void DidGetIgnoredUIEvent() OVERRIDE;
virtual void WebContentsDestroyed(content::WebContents* tab) OVERRIDE;
// Delegate for notifying our owner about stuff. Not owned by us.
WebContentsModalDialogManagerDelegate* delegate_;
// Delegate for native UI-specific functions on the dialog.
scoped_ptr<NativeWebContentsModalDialogManager> native_manager_;
// All active dialogs.
WebContentsModalDialogList child_dialogs_;
DISALLOW_COPY_AND_ASSIGN(WebContentsModalDialogManager);
};
#endif // CHROME_BROWSER_UI_WEB_CONTENTS_MODAL_DIALOG_MANAGER_H_
|