| Index: sky/viewer/converters/input_event_types.cc
|
| diff --git a/sky/viewer/converters/input_event_types.cc b/sky/viewer/converters/input_event_types.cc
|
| index ae032b3fc510f4e718637a64860744fdbd1c8624..e6e1c99a7855b0d54b00953e16286c8a99660a05 100644
|
| --- a/sky/viewer/converters/input_event_types.cc
|
| +++ b/sky/viewer/converters/input_event_types.cc
|
| @@ -70,6 +70,10 @@ scoped_ptr<blink::WebInputEvent> BuildWebPointerEvent(
|
|
|
| web_event->x = event->pointer_data->x / device_pixel_ratio;
|
| web_event->y = event->pointer_data->y / device_pixel_ratio;
|
| + web_event->pressure = event->pointer_data->pressure;
|
| + web_event->radiusMajor = event->pointer_data->radius_major;
|
| + web_event->radiusMinor = event->pointer_data->radius_minor;
|
| + web_event->orientation = event->pointer_data->orientation;
|
|
|
| return web_event.Pass();
|
| }
|
|
|