Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: content/renderer/input/input_handler_manager.cc

Issue 2576013002: Introducing WebCoalescedInputEvent and inclusion in content/common (Closed)
Patch Set: Fix a few DCHECK hits Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/input/input_handler_manager.cc
diff --git a/content/renderer/input/input_handler_manager.cc b/content/renderer/input/input_handler_manager.cc
index 772309a45e018d2c6000da3b243ec4027ce644db..937c7000dd64617e69520ea5072062d2dfe3f8d2 100644
--- a/content/renderer/input/input_handler_manager.cc
+++ b/content/renderer/input/input_handler_manager.cc
@@ -201,7 +201,7 @@ void InputHandlerManager::ProcessRafAlignedInputOnMainThread(int routing_id) {
void InputHandlerManager::HandleInputEvent(
int routing_id,
- ui::ScopedWebInputEvent input_event,
+ blink::WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
const InputEventAckStateCallback& callback) {
DCHECK(task_runner_->BelongsToCurrentThread());
@@ -230,7 +230,7 @@ void InputHandlerManager::HandleInputEvent(
void InputHandlerManager::DidHandleInputEventAndOverscroll(
const InputEventAckStateCallback& callback,
InputHandlerProxy::EventDisposition event_disposition,
- ui::ScopedWebInputEvent input_event,
+ blink::WebScopedInputEvent input_event,
const ui::LatencyInfo& latency_info,
std::unique_ptr<ui::DidOverscrollParams> overscroll_params) {
InputEventAckState input_event_ack_state =
@@ -277,7 +277,7 @@ void InputHandlerManager::NeedsMainFrame(int routing_id) {
void InputHandlerManager::DispatchNonBlockingEventToMainThread(
int routing_id,
- ui::ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const ui::LatencyInfo& latency_info) {
DCHECK(task_runner_->BelongsToCurrentThread());
client_->DispatchNonBlockingEventToMainThread(routing_id, std::move(event),

Powered by Google App Engine
This is Rietveld 408576698