summaryrefslogtreecommitdiffstats
path: root/V8Binding
diff options
context:
space:
mode:
Diffstat (limited to 'V8Binding')
-rw-r--r--V8Binding/binding/v8_proxy.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/V8Binding/binding/v8_proxy.cpp b/V8Binding/binding/v8_proxy.cpp
index c9e7058..c68837d 100644
--- a/V8Binding/binding/v8_proxy.cpp
+++ b/V8Binding/binding/v8_proxy.cpp
@@ -2952,6 +2952,10 @@ v8::Handle<v8::Value> V8Proxy::EventToV8Object(Event* event)
type = V8ClassIndex::MOUSEEVENT;
else if (event->isWheelEvent())
type = V8ClassIndex::WHEELEVENT;
+#if PLATFORM(ANDROID) // ENABLE(TOUCH_EVENTS)
+ else if (event->isTouchEvent())
+ type = V8ClassIndex::TOUCHEVENT;
+#endif
#if ENABLE(SVG)
else if (event->isSVGZoomEvent())
type = V8ClassIndex::SVGZOOMEVENT;