git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Source/WebKit/chromium: Wire gesture tap events, add support for gesture events in...
[WebKit-https.git]
/
Source
/
WebKit
/
chromium
/
src
/
WebInputEventConversion.cpp
diff --git
a/Source/WebKit/chromium/src/WebInputEventConversion.cpp
b/Source/WebKit/chromium/src/WebInputEventConversion.cpp
index 90c2c8c61768c1daedac919d1994db8f6cb07aa2..0ddea0244a898224d40af1f8f2d5cdc6ed00c76c 100644
(file)
--- a/
Source/WebKit/chromium/src/WebInputEventConversion.cpp
+++ b/
Source/WebKit/chromium/src/WebInputEventConversion.cpp
@@
-120,6
+120,9
@@
PlatformGestureEventBuilder::PlatformGestureEventBuilder(Widget* widget, const W
case WebInputEvent::GestureScrollEnd:
m_type = PlatformGestureEvent::ScrollEndType;
break;
case WebInputEvent::GestureScrollEnd:
m_type = PlatformGestureEvent::ScrollEndType;
break;
+ case WebInputEvent::GestureTap:
+ m_type = PlatformGestureEvent::TapType;
+ break;
default:
ASSERT_NOT_REACHED();
}
default:
ASSERT_NOT_REACHED();
}