summaryrefslogtreecommitdiffstats
path: root/WebKit/android/plugins
diff options
context:
space:
mode:
authorGrace Kloba <klobag@google.com>2009-12-08 09:50:32 -0800
committerGrace Kloba <klobag@google.com>2009-12-09 09:56:11 -0800
commit3d0d3fdaa1308448b47592c03cda81c7f9e1f789 (patch)
tree0f7edf54cfb1a5ff64e6b22451e78f847cf35c12 /WebKit/android/plugins
parentbf16ddc110ef3fde2cfa1ae43ab31d993377981d (diff)
downloadexternal_webkit-3d0d3fdaa1308448b47592c03cda81c7f9e1f789.zip
external_webkit-3d0d3fdaa1308448b47592c03cda81c7f9e1f789.tar.gz
external_webkit-3d0d3fdaa1308448b47592c03cda81c7f9e1f789.tar.bz2
Enable longpress and doubletap to WebKit as touch
event if it is requested.
Diffstat (limited to 'WebKit/android/plugins')
-rw-r--r--WebKit/android/plugins/android_npapi.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/WebKit/android/plugins/android_npapi.h b/WebKit/android/plugins/android_npapi.h
index e52debb..14553ff 100644
--- a/WebKit/android/plugins/android_npapi.h
+++ b/WebKit/android/plugins/android_npapi.h
@@ -790,13 +790,29 @@ enum ANPTouchActions {
the plugin chooses to not handle this action then no other events
related to that particular touch gesture will be generated.
*/
- kDown_ANPTouchAction = 0,
- kUp_ANPTouchAction = 1,
- kMove_ANPTouchAction = 2,
- kCancel_ANPTouchAction = 3,
+ kDown_ANPTouchAction = 0,
+ kUp_ANPTouchAction = 1,
+ kMove_ANPTouchAction = 2,
+ kCancel_ANPTouchAction = 3,
+ // The web view will ignore the return value from the following actions
+ kLongPress_ANPTouchAction = 4,
+ kDoubleTap_ANPTouchAction = 5,
};
typedef int32_t ANPTouchAction;
+/**
+ * When a plugin returns from NPP_HandleEvent() for a touch event, it can use
+ * ANPTouchResultMask to tell the web view which touch event it wants to handle.
+ * kHandleTouch_ANPTouchResult will handle all touch event inside the plugin. If
+ * it is not set, a plugin can choose only handle individual event like long
+ * press, or double tap.
+ */
+enum ANPTouchResultMask {
+ kHandleTouch_ANPTouchResult = 1,
+ kHandleLongPress_ANPTouchResult = 2,
+ kHandleDoubleTap_ANPTouchResult = 4,
+};
+
enum ANPLifecycleActions {
/** The web view containing this plugin has been paused. See documentation
on the android activity lifecycle for more information.