| Index: ash/touch/touch_hud_debug.cc
|
| diff --git a/ash/touch/touch_hud_debug.cc b/ash/touch/touch_hud_debug.cc
|
| index eb6c04da83a5b22b643834fd00e338f66818aa6c..bac5c7de1a449ff715f7dc4c1e92d1bb3ce80fc0 100644
|
| --- a/ash/touch/touch_hud_debug.cc
|
| +++ b/ash/touch/touch_hud_debug.cc
|
| @@ -93,12 +93,11 @@ struct TouchPointLog {
|
| type(touch.type()),
|
| location(touch.root_location()),
|
| timestamp(touch.time_stamp().InMillisecondsF()),
|
| - radius_x(touch.radius_x()),
|
| - radius_y(touch.radius_y()),
|
| - pressure(touch.force()),
|
| + radius_x(touch.pointer_details().radius_x()),
|
| + radius_y(touch.pointer_details().radius_y()),
|
| + pressure(touch.pointer_details().force()),
|
| tracking_id(GetTrackingId(touch)),
|
| - source_device(touch.source_device_id()) {
|
| - }
|
| + source_device(touch.source_device_id()) {}
|
|
|
| // Populates a dictionary value with all the information about the touch
|
| // point.
|
|
|