| Index: content/common/input_messages.h
|
| diff --git a/content/common/input_messages.h b/content/common/input_messages.h
|
| index 14967b4847c40c01a2ac46b406d4105979de3dbe..7e094aeb614e664aa611e15fcacf0d5434b7aaa4 100644
|
| --- a/content/common/input_messages.h
|
| +++ b/content/common/input_messages.h
|
| @@ -17,6 +17,7 @@
|
| #include "content/common/input/synthetic_gesture_packet.h"
|
| #include "content/common/input/synthetic_gesture_params.h"
|
| #include "content/common/input/synthetic_pinch_gesture_params.h"
|
| +#include "content/common/input/synthetic_smooth_drag_gesture_params.h"
|
| #include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
|
| #include "content/common/input/synthetic_tap_gesture_params.h"
|
| #include "content/common/input/touch_action.h"
|
| @@ -77,6 +78,13 @@ IPC_STRUCT_TRAITS_BEGIN(content::SyntheticGestureParams)
|
| IPC_STRUCT_TRAITS_MEMBER(gesture_source_type)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(content::SyntheticSmoothDragGestureParams)
|
| +IPC_STRUCT_TRAITS_PARENT(content::SyntheticGestureParams)
|
| +IPC_STRUCT_TRAITS_MEMBER(start_point)
|
| +IPC_STRUCT_TRAITS_MEMBER(distances)
|
| +IPC_STRUCT_TRAITS_MEMBER(speed_in_pixels_s)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| IPC_STRUCT_TRAITS_BEGIN(content::SyntheticSmoothScrollGestureParams)
|
| IPC_STRUCT_TRAITS_PARENT(content::SyntheticGestureParams)
|
| IPC_STRUCT_TRAITS_MEMBER(anchor)
|
|
|