Index: Source/web/WebInputEventConversion.cpp |
diff --git a/Source/web/WebInputEventConversion.cpp b/Source/web/WebInputEventConversion.cpp |
index cdb8f9e96de11091acbb2794f54998103b76d76c..f09cd9e4227de664ba8c72bc6445201a893a2270 100644 |
--- a/Source/web/WebInputEventConversion.cpp |
+++ b/Source/web/WebInputEventConversion.cpp |
@@ -418,7 +418,7 @@ inline WebTouchPoint::State toWebTouchPointState(const AtomicString& type) |
PlatformTouchPointBuilder::PlatformTouchPointBuilder(Widget* widget, const WebTouchPoint& point) |
{ |
- m_id = point.id; |
+ m_pointerProperties = point; |
m_state = toPlatformTouchPointState(point.state); |
// This assumes convertFromContainingWindow does only translations, not scales. |
@@ -429,7 +429,6 @@ PlatformTouchPointBuilder::PlatformTouchPointBuilder(Widget* widget, const WebTo |
m_screenPos = FloatPoint(point.screenPosition.x, point.screenPosition.y); |
m_radius = scaleSizeToWindow(widget, FloatSize(point.radiusX, point.radiusY)); |
m_rotationAngle = point.rotationAngle; |
- m_force = point.force; |
} |
PlatformTouchEventBuilder::PlatformTouchEventBuilder(Widget* widget, const WebTouchEvent& event) |