Index: ui/events/gesture_detection/gesture_listeners.h |
diff --git a/ui/events/gesture_detection/gesture_listeners.h b/ui/events/gesture_detection/gesture_listeners.h |
index 61f541868392c41bf2425dc52b47a241297016c6..6decce661335bd7959b8483650af58a81466025b 100644 |
--- a/ui/events/gesture_detection/gesture_listeners.h |
+++ b/ui/events/gesture_detection/gesture_listeners.h |
@@ -17,7 +17,7 @@ class GESTURE_DETECTION_EXPORT GestureListener { |
virtual ~GestureListener() {} |
virtual bool OnDown(const MotionEvent& e) = 0; |
virtual void OnShowPress(const MotionEvent& e) = 0; |
- virtual bool OnSingleTapUp(const MotionEvent& e) = 0; |
+ virtual bool OnSingleTapUp(const MotionEvent& e, int tap_count) = 0; |
virtual void OnLongPress(const MotionEvent& e) = 0; |
virtual bool OnScroll(const MotionEvent& e1, |
const MotionEvent& e2, |
@@ -55,7 +55,7 @@ class GESTURE_DETECTION_EXPORT SimpleGestureListener |
// GestureListener implementation. |
bool OnDown(const MotionEvent& e) override; |
void OnShowPress(const MotionEvent& e) override; |
- bool OnSingleTapUp(const MotionEvent& e) override; |
+ bool OnSingleTapUp(const MotionEvent& e, int tap_count) override; |
void OnLongPress(const MotionEvent& e) override; |
bool OnScroll(const MotionEvent& e1, |
const MotionEvent& e2, |