Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1392)

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewGestureHandler.java

Issue 145953005: Expose more gestures to ContentViewCore.GestureStateListeners (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/android/java/src/org/chromium/content/browser/ContentViewGestureHandler.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewGestureHandler.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewGestureHandler.java
index 0e20ccca46191af3e571da15a830228e80dc56c3..9e4dba5bafc73d07031b0ba587b29ef49649741c 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewGestureHandler.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewGestureHandler.java
@@ -208,12 +208,13 @@ class ContentViewGestureHandler implements LongPressDelegate {
static final int GESTURE_SCROLL_END = 8;
static final int GESTURE_FLING_START = 9;
static final int GESTURE_FLING_CANCEL = 10;
- static final int GESTURE_PINCH_BEGIN = 11;
- static final int GESTURE_PINCH_BY = 12;
- static final int GESTURE_PINCH_END = 13;
- static final int GESTURE_TAP_CANCEL = 14;
- static final int GESTURE_LONG_TAP = 15;
- static final int GESTURE_TAP_DOWN = 16;
+ static final int GESTURE_FLING_END = 11;
+ static final int GESTURE_PINCH_BEGIN = 12;
+ static final int GESTURE_PINCH_BY = 13;
+ static final int GESTURE_PINCH_END = 14;
+ static final int GESTURE_TAP_CANCEL = 15;
+ static final int GESTURE_LONG_TAP = 16;
+ static final int GESTURE_TAP_DOWN = 17;
// These have to be kept in sync with content/port/common/input_event_ack_state.h
static final int INPUT_EVENT_ACK_STATE_UNKNOWN = 0;

Powered by Google App Engine
This is Rietveld 408576698