forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite_engagement_helper.cc
260 lines (219 loc) · 8.86 KB
/
site_engagement_helper.cc
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// Copyright 2015 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/engagement/site_engagement_helper.h"
#include <utility>
#include "base/bind.h"
#include "base/stl_util.h"
#include "base/time/time.h"
#include "base/trace_event/trace_event.h"
#include "chrome/browser/prerender/prerender_contents.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/web_contents.h"
namespace {
int g_seconds_to_pause_engagement_detection = 10;
int g_seconds_delay_after_navigation = 10;
int g_seconds_delay_after_media_starts = 10;
int g_seconds_delay_after_show = 5;
} // anonymous namespace
// static
void SiteEngagementService::Helper::SetSecondsBetweenUserInputCheck(
int seconds) {
g_seconds_to_pause_engagement_detection = seconds;
}
// static
void SiteEngagementService::Helper::SetSecondsTrackingDelayAfterNavigation(
int seconds) {
g_seconds_delay_after_navigation = seconds;
}
// static
void SiteEngagementService::Helper::SetSecondsTrackingDelayAfterShow(
int seconds) {
g_seconds_delay_after_show = seconds;
}
SiteEngagementService::Helper::~Helper() {
if (web_contents()) {
input_tracker_.Stop();
media_tracker_.Stop();
}
}
SiteEngagementService::Helper::PeriodicTracker::PeriodicTracker(
SiteEngagementService::Helper* helper)
: helper_(helper), pause_timer_(std::make_unique<base::OneShotTimer>()) {}
SiteEngagementService::Helper::PeriodicTracker::~PeriodicTracker() {}
void SiteEngagementService::Helper::PeriodicTracker::Start(
base::TimeDelta initial_delay) {
StartTimer(initial_delay);
}
void SiteEngagementService::Helper::PeriodicTracker::Pause() {
TrackingStopped();
StartTimer(
base::TimeDelta::FromSeconds(g_seconds_to_pause_engagement_detection));
}
void SiteEngagementService::Helper::PeriodicTracker::Stop() {
TrackingStopped();
pause_timer_->Stop();
}
bool SiteEngagementService::Helper::PeriodicTracker::IsTimerRunning() {
return pause_timer_->IsRunning();
}
void SiteEngagementService::Helper::PeriodicTracker::SetPauseTimerForTesting(
std::unique_ptr<base::OneShotTimer> timer) {
pause_timer_ = std::move(timer);
}
void SiteEngagementService::Helper::PeriodicTracker::StartTimer(
base::TimeDelta delay) {
pause_timer_->Start(
FROM_HERE, delay,
base::Bind(
&SiteEngagementService::Helper::PeriodicTracker::TrackingStarted,
base::Unretained(this)));
}
SiteEngagementService::Helper::InputTracker::InputTracker(
SiteEngagementService::Helper* helper,
content::WebContents* web_contents)
: PeriodicTracker(helper),
content::WebContentsObserver(web_contents),
is_tracking_(false) {}
void SiteEngagementService::Helper::InputTracker::TrackingStarted() {
is_tracking_ = true;
}
void SiteEngagementService::Helper::InputTracker::TrackingStopped() {
is_tracking_ = false;
}
// Record that there was some user input, and defer handling of the input event.
// Once the timer finishes running, the callbacks detecting user input will be
// registered again.
void SiteEngagementService::Helper::InputTracker::DidGetUserInteraction(
const blink::WebInputEvent::Type type) {
// Only respond to raw key down to avoid multiple triggering on a single input
// (e.g. keypress is a key down then key up).
if (!is_tracking_)
return;
// This switch has a default NOTREACHED case because it will not test all
// of the values of the WebInputEvent::Type enum (hence it won't require the
// compiler verifying that all cases are covered).
switch (type) {
case blink::WebInputEvent::kRawKeyDown:
helper()->RecordUserInput(SiteEngagementService::ENGAGEMENT_KEYPRESS);
break;
case blink::WebInputEvent::kMouseDown:
helper()->RecordUserInput(SiteEngagementService::ENGAGEMENT_MOUSE);
break;
case blink::WebInputEvent::kTouchStart:
helper()->RecordUserInput(
SiteEngagementService::ENGAGEMENT_TOUCH_GESTURE);
break;
case blink::WebInputEvent::kGestureScrollBegin:
helper()->RecordUserInput(SiteEngagementService::ENGAGEMENT_SCROLL);
break;
default:
NOTREACHED();
}
Pause();
}
SiteEngagementService::Helper::MediaTracker::MediaTracker(
SiteEngagementService::Helper* helper,
content::WebContents* web_contents)
: PeriodicTracker(helper), content::WebContentsObserver(web_contents) {}
SiteEngagementService::Helper::MediaTracker::~MediaTracker() {}
void SiteEngagementService::Helper::MediaTracker::TrackingStarted() {
if (!active_media_players_.empty()) {
// TODO(dominickn): Consider treating OCCLUDED tabs like HIDDEN tabs when
// computing engagement score. They are currently treated as VISIBLE tabs to
// preserve old behavior.
helper()->RecordMediaPlaying(web_contents()->GetVisibility() ==
content::Visibility::HIDDEN);
}
Pause();
}
void SiteEngagementService::Helper::MediaTracker::DidFinishNavigation(
content::NavigationHandle* handle) {
// Ignore subframe navigation to avoid clearing main frame active media
// players when they navigate.
if (!handle->HasCommitted() || !handle->IsInMainFrame() ||
handle->IsSameDocument()) {
return;
}
// Media stops playing on navigation, so clear our state.
active_media_players_.clear();
}
void SiteEngagementService::Helper::MediaTracker::MediaStartedPlaying(
const MediaPlayerInfo& media_info,
const content::MediaPlayerId& id) {
// Only begin engagement detection when media actually starts playing.
active_media_players_.push_back(id);
if (!IsTimerRunning())
Start(base::TimeDelta::FromSeconds(g_seconds_delay_after_media_starts));
}
void SiteEngagementService::Helper::MediaTracker::MediaStoppedPlaying(
const MediaPlayerInfo& media_info,
const content::MediaPlayerId& id,
WebContentsObserver::MediaStoppedReason reason) {
base::Erase(active_media_players_, id);
}
SiteEngagementService::Helper::Helper(content::WebContents* web_contents)
: content::WebContentsObserver(web_contents),
input_tracker_(this, web_contents),
media_tracker_(this, web_contents),
service_(SiteEngagementService::Get(
Profile::FromBrowserContext(web_contents->GetBrowserContext()))) {}
void SiteEngagementService::Helper::RecordUserInput(
SiteEngagementService::EngagementType type) {
TRACE_EVENT0("SiteEngagement", "RecordUserInput");
content::WebContents* contents = web_contents();
if (contents)
service_->HandleUserInput(contents, type);
}
void SiteEngagementService::Helper::RecordMediaPlaying(bool is_hidden) {
content::WebContents* contents = web_contents();
if (contents)
service_->HandleMediaPlaying(contents, is_hidden);
}
void SiteEngagementService::Helper::DidFinishNavigation(
content::NavigationHandle* handle) {
// Ignore uncommitted, non main-frame, same page, or error page navigations.
if (!handle->HasCommitted() || !handle->IsInMainFrame() ||
handle->IsSameDocument() || handle->IsErrorPage()) {
return;
}
input_tracker_.Stop();
media_tracker_.Stop();
// Ignore prerender loads. This means that prerenders will not receive
// navigation engagement. The implications are as follows:
//
// - Instant search prerenders from the omnibox trigger DidFinishNavigation
// twice: once for the prerender, and again when the page swaps in. The
// second trigger has transition GENERATED and receives navigation
// engagement.
// - Prerenders initiated by <link rel="prerender"> (e.g. search results) are
// always assigned the LINK transition, which is ignored for navigation
// engagement.
//
// Prerenders trigger WasShown() when they are swapped in, so input engagement
// will activate even if navigation engagement is not scored.
if (prerender::PrerenderContents::FromWebContents(web_contents()) != nullptr)
return;
service_->HandleNavigation(web_contents(), handle->GetPageTransition());
input_tracker_.Start(
base::TimeDelta::FromSeconds(g_seconds_delay_after_navigation));
}
void SiteEngagementService::Helper::OnVisibilityChanged(
content::Visibility visibility) {
// TODO(fdoray): Once the page visibility API [1] treats hidden and occluded
// documents the same way, consider stopping |input_tracker_| when
// |visibility| is OCCLUDED. https://crbug.com/668690
// [1] https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API
if (visibility == content::Visibility::HIDDEN) {
input_tracker_.Stop();
} else {
// Start a timer to track input if it isn't already running and input isn't
// already being tracked.
if (!input_tracker_.IsTimerRunning() && !input_tracker_.is_tracking()) {
input_tracker_.Start(
base::TimeDelta::FromSeconds(g_seconds_delay_after_show));
}
}
}
WEB_CONTENTS_USER_DATA_KEY_IMPL(SiteEngagementService::Helper)