summaryrefslogtreecommitdiffstats
path: root/WebKit
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-01-21 12:24:38 +0000
committerBen Murdoch <benm@google.com>2010-01-21 16:12:13 +0000
commit8378bbaf6c884178ee0d9ca200c1257b0c393843 (patch)
treef55d0e0916a3e01ff5f7df762d29cb8c9a06e90a /WebKit
parent1f8453220b6154c7e7749fe3342f489b295bee96 (diff)
downloadexternal_webkit-8378bbaf6c884178ee0d9ca200c1257b0c393843.zip
external_webkit-8378bbaf6c884178ee0d9ca200c1257b0c393843.tar.gz
external_webkit-8378bbaf6c884178ee0d9ca200c1257b0c393843.tar.bz2
Refactor style of Android specific touch events code in preparation for upstreaming to webkit.org.
Change-Id: Id34e727145fe94e98e62a36b7fc8256468b4157c
Diffstat (limited to 'WebKit')
-rw-r--r--WebKit/android/jni/WebViewCore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp
index 224be5c..5ebc8eb 100644
--- a/WebKit/android/jni/WebViewCore.cpp
+++ b/WebKit/android/jni/WebViewCore.cpp
@@ -1967,7 +1967,7 @@ int WebViewCore::handleTouchEvent(int action, int x, int y)
m_lastTouchPoint = pt;
- WebCore::PlatformTouchEvent te(pt, pt, type, touchState);
+ WebCore::PlatformTouchEvent te(pt, type, touchState);
preventDefault = m_mainFrame->eventHandler()->handleTouchEvent(te);
#endif