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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
// Copyright (c) 2010 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/gtk/notifications/balloon_view_host_gtk.h"
#include "base/string_util.h"
#include "chrome/browser/browser_list.h"
#include "chrome/browser/in_process_webkit/dom_storage_context.h"
#include "chrome/browser/in_process_webkit/webkit_context.h"
#include "chrome/browser/notifications/balloon.h"
#include "chrome/browser/notifications/notification.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/renderer_host/render_view_host.h"
#include "chrome/browser/renderer_host/render_widget_host_view.h"
#include "chrome/browser/renderer_host/render_widget_host_view_gtk.h"
#include "chrome/browser/renderer_host/site_instance.h"
#include "chrome/browser/renderer_preferences_util.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/notification_type.h"
#include "chrome/common/render_messages.h"
#include "chrome/common/renderer_preferences.h"
BalloonViewHost::BalloonViewHost(Balloon* balloon)
: initialized_(false),
balloon_(balloon),
site_instance_(SiteInstance::CreateSiteInstance(balloon->profile())),
render_view_host_(NULL),
should_notify_on_disconnect_(false) {
DCHECK(balloon_);
}
void BalloonViewHost::Shutdown() {
if (render_view_host_) {
render_view_host_->Shutdown();
render_view_host_ = NULL;
}
}
WebPreferences BalloonViewHost::GetWebkitPrefs() {
WebPreferences prefs;
prefs.allow_scripts_to_close_windows = true;
return prefs;
}
RendererPreferences BalloonViewHost::GetRendererPrefs(Profile* profile) const {
RendererPreferences prefs;
renderer_preferences_util::UpdateFromSystemSettings(&prefs, profile);
// We want links (a.k.a. top_level_requests) to be forwarded to the browser so
// that we can open them in a new tab rather than in the balloon.
prefs.browser_handles_top_level_requests = true;
return prefs;
}
void BalloonViewHost::RequestOpenURL(const GURL& url,
const GURL& referrer,
WindowOpenDisposition disposition) {
// Always open a link triggered within the notification balloon in a new tab.
// TODO(johnnyg): this new tab should always be in the same workspace as the
// notification.
BrowserList::GetLastActive()->AddTabWithURL(url, referrer,
PageTransition::LINK, true, 0, 0, GetSiteInstance());
}
void BalloonViewHost::Close(RenderViewHost* render_view_host) {
balloon_->CloseByScript();
}
void BalloonViewHost::RenderViewCreated(RenderViewHost* render_view_host) {
render_view_host->Send(new ViewMsg_EnablePreferredSizeChangedMode(
render_view_host->routing_id()));
}
void BalloonViewHost::RendererReady(RenderViewHost* render_view_host) {
should_notify_on_disconnect_ = true;
NotificationService::current()->Notify(
NotificationType::NOTIFY_BALLOON_CONNECTED,
Source<Balloon>(balloon_), NotificationService::NoDetails());
}
void BalloonViewHost::RendererGone(RenderViewHost* render_view_host) {
if (!should_notify_on_disconnect_)
return;
should_notify_on_disconnect_ = false;
NotificationService::current()->Notify(
NotificationType::NOTIFY_BALLOON_DISCONNECTED,
Source<Balloon>(balloon_), NotificationService::NoDetails());
}
// RenderViewHostDelegate::View methods implemented to allow links to
// open pages in new tabs.
void BalloonViewHost::CreateNewWindow(int route_id) {
delegate_view_helper_.CreateNewWindow(
route_id, balloon_->profile(), site_instance_.get(),
DOMUIFactory::GetDOMUIType(balloon_->notification().content_url()), NULL);
}
void BalloonViewHost::ShowCreatedWindow(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {
// Don't allow pop-ups from notifications.
if (disposition == NEW_POPUP)
return;
TabContents* contents = delegate_view_helper_.GetCreatedWindow(route_id);
if (contents) {
Browser* browser = BrowserList::GetLastActive();
browser->AddTabContents(contents, disposition, initial_pos, user_gesture);
}
}
void BalloonViewHost::UpdatePreferredSize(const gfx::Size& new_size) {
balloon_->SetContentPreferredSize(new_size);
}
void BalloonViewHost::UpdateActualSize(const gfx::Size& new_size) {
render_widget_host_view_->SetSize(new_size);
// gfx::Size(new_size.width(), new_size.height()));
gtk_widget_set_size_request(
native_view(), new_size.width(), new_size.height());
}
void BalloonViewHost::Init() {
DCHECK(!render_view_host_) << "BalloonViewHost already initialized.";
int64 session_storage_namespace_id = balloon_->profile()->GetWebKitContext()->
dom_storage_context()->AllocateSessionStorageNamespaceId();
render_view_host_ = new RenderViewHost(site_instance_.get(),
this, MSG_ROUTING_NONE,
session_storage_namespace_id);
render_widget_host_view_ = new RenderWidgetHostViewGtk(render_view_host_);
render_widget_host_view_->InitAsChild();
render_view_host_->set_view(render_widget_host_view_);
render_view_host_->CreateRenderView(GetProfile()->GetRequestContext());
render_view_host_->NavigateToURL(balloon_->notification().content_url());
initialized_ = true;
}
|