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

Unified Diff: third_party/WebKit/Source/web/WebInputEventConversion.cpp

Issue 1989623002: Suppressed MEs for gestures from cancelled PEs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a comment. Created 4 years, 7 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: third_party/WebKit/Source/web/WebInputEventConversion.cpp
diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.cpp b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
index 04d1dc5146b8dbe8b6aad5d6b092f44ce976e5e7..fa1f346b87627281c2834318df9d3efd7d9cdabe 100644
--- a/third_party/WebKit/Source/web/WebInputEventConversion.cpp
+++ b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
@@ -328,6 +328,8 @@ PlatformGestureEventBuilder::PlatformGestureEventBuilder(Widget* widget, const W
case WebGestureDeviceUninitialized:
NOTREACHED();
}
+
+ m_uniqueTouchEventId = e.uniqueTouchEventId;
}
// MakePlatformKeyboardEvent --------------------------------------------------
@@ -475,6 +477,8 @@ PlatformTouchEventBuilder::PlatformTouchEventBuilder(Widget* widget, const WebTo
m_touchPoints.append(PlatformTouchPointBuilder(widget, event.touches[i]));
m_dispatchType = toPlatformDispatchType(event.dispatchType);
+
dtapuska 2016/06/03 15:02:11 Remove new line
mustaq 2016/06/03 20:34:45 Done.
+ m_uniqueTouchEventId = event.uniqueTouchEventId;
}
static FloatPoint convertAbsoluteLocationForLayoutObjectFloat(const LayoutPoint& location, const LayoutItem layoutItem)

Powered by Google App Engine
This is Rietveld 408576698