Home | History | Annotate | Download | only in tests

Lines Matching refs:WebGestureEvent

136         WebGestureEvent webGestureEvent;
137 webGestureEvent.type = WebInputEvent::GestureScrollUpdate;
138 webGestureEvent.x = 10;
139 webGestureEvent.y = 10;
140 webGestureEvent.globalX = 10;
141 webGestureEvent.globalY = 10;
142 webGestureEvent.data.scrollUpdate.deltaX = 10;
143 webGestureEvent.data.scrollUpdate.deltaY = 10;
145 PlatformGestureEventBuilder platformGestureBuilder(view, webGestureEvent);
155 WebGestureEvent webGestureEvent;
156 webGestureEvent.type = WebInputEvent::GestureTap;
157 webGestureEvent.data.tap.width = 10;
158 webGestureEvent.data.tap.height = 10;
160 PlatformGestureEventBuilder platformGestureBuilder(view, webGestureEvent);
166 WebGestureEvent webGestureEvent;
167 webGestureEvent.type = WebInputEvent::GestureTapUnconfirmed;
168 webGestureEvent.data.tap.width = 10;
169 webGestureEvent.data.tap.height = 10;
171 PlatformGestureEventBuilder platformGestureBuilder(view, webGestureEvent);
177 WebGestureEvent webGestureEvent;
178 webGestureEvent.type = WebInputEvent::GestureTapDown;
179 webGestureEvent.data.tapDown.width = 10;
180 webGestureEvent.data.tapDown.height = 10;
182 PlatformGestureEventBuilder platformGestureBuilder(view, webGestureEvent);
188 WebGestureEvent webGestureEvent;
189 webGestureEvent.type = WebInputEvent::GestureLongPress;
190 webGestureEvent.data.longPress.width = 10;
191 webGestureEvent.data.longPress.height = 10;
193 PlatformGestureEventBuilder platformGestureBuilder(view, webGestureEvent);
199 WebGestureEvent webGestureEvent;
200 webGestureEvent.type = WebInputEvent::GestureTwoFingerTap;
201 webGestureEvent.data.twoFingerTap.firstFingerWidth = 10;
202 webGestureEvent.data.twoFingerTap.firstFingerHeight = 10;
204 PlatformGestureEventBuilder platformGestureBuilder(view, webGestureEvent);