Index: ui/events/gestures/motion_event_aura.cc |
diff --git a/ui/events/gestures/motion_event_aura.cc b/ui/events/gestures/motion_event_aura.cc |
index 8c345f893eeb87c12f8b3214cc7ed5fc154e7050..033006b92bb88cf48e3b9152e43693a6ddcd9b26 100644 |
--- a/ui/events/gestures/motion_event_aura.cc |
+++ b/ui/events/gestures/motion_event_aura.cc |
@@ -17,10 +17,11 @@ PointerProperties GetPointerPropertiesFromTouchEvent(const TouchEvent& touch) { |
pointer_properties.raw_x = touch.root_location_f().x(); |
pointer_properties.raw_y = touch.root_location_f().y(); |
pointer_properties.id = touch.touch_id(); |
- pointer_properties.pressure = touch.force(); |
+ pointer_properties.pressure = touch.pointer_details().force(); |
pointer_properties.source_device_id = touch.source_device_id(); |
- pointer_properties.SetAxesAndOrientation(touch.radius_x(), touch.radius_y(), |
+ pointer_properties.SetAxesAndOrientation(touch.pointer_details().radius_x(), |
+ touch.pointer_details().radius_y(), |
touch.rotation_angle()); |
if (!pointer_properties.touch_major) { |
pointer_properties.touch_major = |