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

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

Issue 10790066: Enable gesture events handling on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added remaining flags and removed unnecessary comments Created 8 years, 5 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/TouchPoint.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/TouchPoint.java b/content/public/android/java/src/org/chromium/content/browser/TouchPoint.java
index 66e35b1443000a0f241b4931fdd76061dd95f6a3..2e44d9edbb52f6b55a82c4963168b56d8d18193a 100644
--- a/content/public/android/java/src/org/chromium/content/browser/TouchPoint.java
+++ b/content/public/android/java/src/org/chromium/content/browser/TouchPoint.java
@@ -17,10 +17,10 @@ class TouchPoint {
// Type of motion event to send to the native side. The values originate from their
// webkit WebInputEvent counterparts, and are set via initializeConstants().
- private static int TOUCH_EVENT_TYPE_START;
- private static int TOUCH_EVENT_TYPE_MOVE;
- private static int TOUCH_EVENT_TYPE_END;
- private static int TOUCH_EVENT_TYPE_CANCEL;
+ static int TOUCH_EVENT_TYPE_START;
+ static int TOUCH_EVENT_TYPE_MOVE;
+ static int TOUCH_EVENT_TYPE_END;
+ static int TOUCH_EVENT_TYPE_CANCEL;
// Type of motion event to send to the native side. The values originate from their
// webkit WebTouchPoint counterparts, and are set via initializeConstants().

Powered by Google App Engine
This is Rietveld 408576698