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

Unified Diff: ui/events/blink/event_with_callback.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: ui/events/blink/event_with_callback.cc
diff --git a/ui/events/blink/event_with_callback.cc b/ui/events/blink/event_with_callback.cc
index 404c6ae57c9a17c63ddf5dd7513a5afca8f45fc4..12d03ac9a5e27d3e698b20a0da52f157005636d0 100644
--- a/ui/events/blink/event_with_callback.cc
+++ b/ui/events/blink/event_with_callback.cc
@@ -15,7 +15,7 @@ using blink::WebGestureEvent;
namespace ui {
EventWithCallback::EventWithCallback(
- ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks timestamp_now,
const InputHandlerProxy::EventDispositionCallback& callback)
@@ -27,7 +27,7 @@ EventWithCallback::EventWithCallback(
}
EventWithCallback::EventWithCallback(
- ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks creation_timestamp,
base::TimeTicks last_coalesced_timestamp,
@@ -84,7 +84,7 @@ void EventWithCallback::RunCallbacks(
}
EventWithCallback::OriginalEventWithCallback::OriginalEventWithCallback(
- ScopedWebInputEvent event,
+ blink::WebScopedInputEvent event,
const InputHandlerProxy::EventDispositionCallback& callback)
: event_(std::move(event)), callback_(callback) {}

Powered by Google App Engine
This is Rietveld 408576698