blob: 0529354ac38237b56a006f17d5e226a62ed850ca (
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
|
// Copyright 2013 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 "content/browser/renderer_host/input/synthetic_gesture_controller.h"
#include "base/debug/trace_event.h"
#include "content/browser/renderer_host/input/synthetic_gesture_target.h"
#include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
#include "content/common/input_messages.h"
#include "content/public/browser/render_widget_host.h"
namespace content {
SyntheticGestureController::SyntheticGestureController(
scoped_ptr<SyntheticGestureTarget> gesture_target)
: gesture_target_(gesture_target.Pass()) {}
SyntheticGestureController::~SyntheticGestureController() {}
void SyntheticGestureController::QueueSyntheticGesture(
scoped_ptr<SyntheticGesture> synthetic_gesture) {
DCHECK(synthetic_gesture);
pending_gesture_queue_.push_back(synthetic_gesture.release());
// Start forwarding input events if the queue was previously empty.
if (pending_gesture_queue_.size() == 1)
StartGesture(*pending_gesture_queue_.front());
}
void SyntheticGestureController::Flush(base::TimeTicks timestamp) {
if (pending_gesture_queue_.empty())
return;
if (last_tick_time_.is_null()) {
last_tick_time_ = timestamp;
gesture_target_->SetNeedsFlush();
return;
}
base::TimeDelta interval = timestamp - last_tick_time_;
last_tick_time_ = timestamp;
SyntheticGesture::Result result =
pending_gesture_queue_.front()->ForwardInputEvents(interval,
gesture_target_.get());
if (result == SyntheticGesture::GESTURE_RUNNING) {
gesture_target_->SetNeedsFlush();
return;
}
StopGesture(*pending_gesture_queue_.front(), result);
pending_gesture_queue_.erase(pending_gesture_queue_.begin());
if (!pending_gesture_queue_.empty()) {
StartGesture(*pending_gesture_queue_.front());
} else {
// Reset last_tick_time_ so that we don't use an old value when a new
// gestures is queued.
last_tick_time_ = base::TimeTicks();
}
}
void SyntheticGestureController::StartGesture(const SyntheticGesture& gesture) {
TRACE_EVENT_ASYNC_BEGIN0("benchmark", "SyntheticGestureController::running",
&gesture);
gesture_target_->SetNeedsFlush();
}
void SyntheticGestureController::StopGesture(
const SyntheticGesture& gesture, SyntheticGesture::Result result) {
DCHECK_NE(result, SyntheticGesture::GESTURE_RUNNING);
TRACE_EVENT_ASYNC_END0("benchmark", "SyntheticGestureController::running",
&gesture);
gesture_target_->OnSyntheticGestureCompleted(result);
}
} // namespace content
|