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

Unified Diff: content/browser/renderer_host/input/gesture_event_queue.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/browser/renderer_host/input/gesture_event_queue.cc
diff --git a/content/browser/renderer_host/input/gesture_event_queue.cc b/content/browser/renderer_host/input/gesture_event_queue.cc
index ac20e60614f1ebcd35e8da7e53d824a6e5d698fc..8377e3e741c1c2b0ed64326bac1811d788b3edd6 100644
--- a/content/browser/renderer_host/input/gesture_event_queue.cc
+++ b/content/browser/renderer_host/input/gesture_event_queue.cc
@@ -324,7 +324,7 @@ void GestureEventQueue::QueueScrollOrPinchAndForwardIfNecessary(
coalesced_gesture_events_.pop_back();
// Extract the second last event in queue.
- ui::ScopedWebInputEvent second_last_gesture_event = nullptr;
+ blink::WebScopedInputEvent second_last_gesture_event = nullptr;
if (unsent_events_count > 1 &&
ui::IsCompatibleScrollorPinch(gesture_event.event,
coalesced_gesture_events_.back().event)) {

Powered by Google App Engine
This is Rietveld 408576698