diff options
author | Huahui Wu <hwu@google.com> | 2011-06-29 14:25:20 -0700 |
---|---|---|
committer | Huahui Wu <hwu@google.com> | 2011-07-01 16:15:09 -0700 |
commit | 7b306176de5c64ae37dbb93e9324dd6636c5b564 (patch) | |
tree | 2f7a4877e70c7ab5f9cc1c49128491407701af4f /Source/WebKit/android/jni/WebViewCore.h | |
parent | 7397f7999e73d1595f05a8477b786a61cc0ed028 (diff) | |
download | external_webkit-7b306176de5c64ae37dbb93e9324dd6636c5b564.zip external_webkit-7b306176de5c64ae37dbb93e9324dd6636c5b564.tar.gz external_webkit-7b306176de5c64ae37dbb93e9324dd6636c5b564.tar.bz2 |
b/3302378 Passes touch pressures, sizes and timestamps to Webkit
Related CL in framework:
https://android-git.corp.google.com/g/#change,118420
Change-Id: I337de51ed478fad34fc07854eadf6a38dd5b85f1
Diffstat (limited to 'Source/WebKit/android/jni/WebViewCore.h')
-rw-r--r-- | Source/WebKit/android/jni/WebViewCore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/jni/WebViewCore.h b/Source/WebKit/android/jni/WebViewCore.h index 877f716..5a14ec7 100644 --- a/Source/WebKit/android/jni/WebViewCore.h +++ b/Source/WebKit/android/jni/WebViewCore.h @@ -328,7 +328,7 @@ namespace android { /** * Handle touch event */ - bool handleTouchEvent(int action, Vector<int>& ids, Vector<IntPoint>& points, int actionIndex, int metaState); + bool handleTouchEvent(int action, long eventTimeInMs, Vector<int>& ids, Vector<IntPoint>& points, Vector<float>& pressures, Vector<int>& touchMajor, Vector<int>& touchMinor, Vector<float>& orientation, int actionIndex, int metaState); /** * Handle motionUp event from the UI thread (called touchUp in the |