Index: content/public/android/java/src/org/chromium/content_public/browser/GestureStateListener.java |
diff --git a/content/public/android/java/src/org/chromium/content_public/browser/GestureStateListener.java b/content/public/android/java/src/org/chromium/content_public/browser/GestureStateListener.java |
index 7d404f26e5cd99adb186f6c798402e9c066fc087..8cb82d6b9c130270fcb023648fea2a7536d12aaa 100644 |
--- a/content/public/android/java/src/org/chromium/content_public/browser/GestureStateListener.java |
+++ b/content/public/android/java/src/org/chromium/content_public/browser/GestureStateListener.java |
@@ -12,20 +12,20 @@ public class GestureStateListener { |
/** |
* Called when the pinch gesture starts. |
*/ |
- public void onPinchGestureStart() {} |
+ public void onPinchStarted() {} |
/** |
* Called when the pinch gesture ends. |
*/ |
- public void onPinchGestureEnd() {} |
+ public void onPinchEnded() {} |
/** |
- * Called when the fling gesture is sent. |
+ * Called when a fling starts. |
*/ |
public void onFlingStartGesture(int vx, int vy, int scrollOffsetY, int scrollExtentY) {} |
/** |
- * Called when the fling cancel gesture is sent. |
+ * Called when a fling is cancelled. |
*/ |
public void onFlingCancelGesture() {} |
@@ -37,7 +37,7 @@ public class GestureStateListener { |
/** |
* Called when a fling event was not handled by the renderer. |
*/ |
- public void onUnhandledFlingStartEvent() {} |
+ public void onUnhandledFlingStartEvent(int vx, int vy) {} |
/** |
* Called to indicate that a scroll update gesture had been consumed by the page. |
@@ -61,4 +61,4 @@ public class GestureStateListener { |
* Called when the scroll offsets or extents may have changed. |
*/ |
public void onScrollOffsetOrExtentChanged(int scrollOffsetY, int scrollExtentY) {} |
-} |
+} |