| Index: ui/events/gesture_detection/gesture_provider.h
|
| diff --git a/ui/events/gesture_detection/gesture_provider.h b/ui/events/gesture_detection/gesture_provider.h
|
| index fce59268f688c98bf7455069340a5fb9af1830f2..dc13b31f7004427b7b24f2492bf3faa33a756c80 100644
|
| --- a/ui/events/gesture_detection/gesture_provider.h
|
| +++ b/ui/events/gesture_detection/gesture_provider.h
|
| @@ -87,15 +87,12 @@ class GESTURE_DETECTION_EXPORT GestureProvider {
|
|
|
| bool CanHandle(const MotionEvent& event) const;
|
|
|
| - void Fling(base::TimeTicks time,
|
| - float x,
|
| - float y,
|
| - float velocity_x,
|
| - float velocity_y);
|
| + void Fling(const MotionEvent& e, float velocity_x, float velocity_y);
|
| void Send(const GestureEventData& gesture);
|
| void SendTapCancelIfNecessary(const MotionEvent& event);
|
| + void SendTapCancelIfNecessary(const GestureEventData& event);
|
| bool SendLongTapIfNecessary(const MotionEvent& event);
|
| - void EndTouchScrollIfNecessary(base::TimeTicks time,
|
| + void EndTouchScrollIfNecessary(const MotionEvent& event,
|
| bool send_scroll_end_event);
|
| void UpdateDoubleTapDetectionSupport();
|
|
|
|
|