Index: content/browser/renderer_host/input/touch_emulator.cc |
diff --git a/content/browser/renderer_host/input/touch_emulator.cc b/content/browser/renderer_host/input/touch_emulator.cc |
index d22065e91996143003c35fcd4809b769bcc31ea9..f8d777f6c75ee2fc73d7729277afbd0d08cb30be 100644 |
--- a/content/browser/renderer_host/input/touch_emulator.cc |
+++ b/content/browser/renderer_host/input/touch_emulator.cc |
@@ -438,10 +438,10 @@ void TouchEmulator::FillTouchEventAndPoint(const WebMouseEvent& mouse_event) { |
eventType, mouse_event.timeStampSeconds, &touch_event_); |
WebTouchPoint& point = touch_event_.touches[0]; |
- point.id = 0; |
- point.radiusX = 0.5f * cursor_size_.width(); |
- point.radiusY = 0.5f * cursor_size_.height(); |
- point.force = 1.f; |
+ point.pointerId = 0; |
+ point.width = 0.5f * cursor_size_.width(); |
+ point.height = 0.5f * cursor_size_.height(); |
+ point.pressure = 1.f; |
point.rotationAngle = 0.f; |
point.position.x = mouse_event.x; |
point.screenPosition.x = mouse_event.globalX; |