Index: Source/core/inspector/InspectorInputAgent.cpp |
diff --git a/Source/core/inspector/InspectorInputAgent.cpp b/Source/core/inspector/InspectorInputAgent.cpp |
index 94e34776a8856f053f4f0cc98b6a6f80c3446143..8c0574410301b9e0827c1431de0a1f4f5830d770 100644 |
--- a/Source/core/inspector/InspectorInputAgent.cpp |
+++ b/Source/core/inspector/InspectorInputAgent.cpp |
@@ -52,13 +52,13 @@ class SyntheticInspectorTouchPoint : public blink::PlatformTouchPoint { |
public: |
SyntheticInspectorTouchPoint(int id, State state, const blink::IntPoint& screenPos, const blink::IntPoint& pos, int radiusX, int radiusY, double rotationAngle, double force) |
{ |
- m_id = id; |
+ m_pointerProperties.id = id; |
m_screenPos = screenPos; |
m_pos = pos; |
m_state = state; |
m_radius = blink::FloatSize(radiusX, radiusY); |
m_rotationAngle = rotationAngle; |
- m_force = force; |
+ m_pointerProperties.force = force; |
} |
}; |