diff options
author | Ben Murdoch <benm@google.com> | 2010-01-21 12:24:38 +0000 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-01-21 16:12:13 +0000 |
commit | 8378bbaf6c884178ee0d9ca200c1257b0c393843 (patch) | |
tree | f55d0e0916a3e01ff5f7df762d29cb8c9a06e90a /WebKit | |
parent | 1f8453220b6154c7e7749fe3342f489b295bee96 (diff) | |
download | external_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.cpp | 2 |
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 |