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
|
// 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.
#include "chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h"
#include <string>
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/renderer_preferences_util.h"
#include "chrome/browser/ui/webui/chrome_web_contents_handler.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "ipc/ipc_message.h"
#include "ui/web_dialogs/web_dialog_delegate.h"
#include "ui/web_dialogs/web_dialog_ui.h"
using content::NativeWebKeyboardEvent;
using content::WebContents;
using ui::WebDialogDelegate;
using ui::WebDialogWebContentsDelegate;
ConstrainedWebDialogDelegateBase::ConstrainedWebDialogDelegateBase(
content::BrowserContext* browser_context,
WebDialogDelegate* delegate,
WebDialogWebContentsDelegate* tab_delegate)
: WebDialogWebContentsDelegate(browser_context,
new ChromeWebContentsHandler),
web_dialog_delegate_(delegate),
closed_via_webui_(false),
release_contents_on_close_(false) {
CHECK(delegate);
web_contents_.reset(
WebContents::Create(WebContents::CreateParams(browser_context)));
if (tab_delegate) {
override_tab_delegate_.reset(tab_delegate);
web_contents_->SetDelegate(tab_delegate);
} else {
web_contents_->SetDelegate(this);
}
renderer_preferences_util::UpdateFromSystemSettings(
web_contents_->GetMutableRendererPrefs(),
Profile::FromBrowserContext(browser_context));
web_contents_->GetRenderViewHost()->SyncRendererPrefs();
// Set |this| as a delegate so the ConstrainedWebDialogUI can retrieve it.
ConstrainedWebDialogUI::SetConstrainedDelegate(web_contents_.get(), this);
web_contents_->GetController().LoadURL(delegate->GetDialogContentURL(),
content::Referrer(),
content::PAGE_TRANSITION_AUTO_TOPLEVEL,
std::string());
}
ConstrainedWebDialogDelegateBase::~ConstrainedWebDialogDelegateBase() {
if (release_contents_on_close_)
ignore_result(web_contents_.release());
}
const WebDialogDelegate*
ConstrainedWebDialogDelegateBase::GetWebDialogDelegate() const {
return web_dialog_delegate_.get();
}
WebDialogDelegate*
ConstrainedWebDialogDelegateBase::GetWebDialogDelegate() {
return web_dialog_delegate_.get();
}
void ConstrainedWebDialogDelegateBase::OnDialogCloseFromWebUI() {
closed_via_webui_ = true;
CloseContents(web_contents_.get());
}
bool ConstrainedWebDialogDelegateBase::closed_via_webui() const {
return closed_via_webui_;
}
void ConstrainedWebDialogDelegateBase::ReleaseWebContentsOnDialogClose() {
release_contents_on_close_ = true;
}
web_modal::NativeWebContentsModalDialog
ConstrainedWebDialogDelegateBase::GetNativeDialog() {
NOTREACHED();
return NULL;
}
WebContents* ConstrainedWebDialogDelegateBase::GetWebContents() {
return web_contents_.get();
}
void ConstrainedWebDialogDelegateBase::HandleKeyboardEvent(
content::WebContents* source,
const NativeWebKeyboardEvent& event) {
}
|