Lines Matching defs:gesture
92 // multi-touch gesture on the window, then this is the release-time of the
117 const ui::GestureEvent& gesture =
119 if (gesture.details().touch_points() == 1)
121 else if (gesture.details().touch_points() == 2)
123 else if (gesture.details().touch_points() == 3)
128 const ui::GestureEvent& gesture =
130 int tap_count = gesture.details().tap_count();
153 const ui::GestureEvent& gesture =
155 if (gesture.details().touch_points() >= 4)
157 else if (gesture.details().touch_points() == 3)
166 const ui::GestureEvent& gesture =
168 if (gesture.details().touch_points() == 1)
170 else if (gesture.details().touch_points() == 2)
172 else if (gesture.details().touch_points() == 3)
216 LOG(ERROR) << "Window received gesture events without receiving any touch"