| Index: sky/engine/core/dom/Node.cpp
|
| diff --git a/sky/engine/core/dom/Node.cpp b/sky/engine/core/dom/Node.cpp
|
| index c93bb6993605ca230212a59c3767efacfba4fd63..5944613d7be4386017e15762614a35dbb4739e14 100644
|
| --- a/sky/engine/core/dom/Node.cpp
|
| +++ b/sky/engine/core/dom/Node.cpp
|
| @@ -59,7 +59,6 @@
|
| #include "sky/engine/core/events/EventDispatchMediator.h"
|
| #include "sky/engine/core/events/EventDispatcher.h"
|
| #include "sky/engine/core/events/EventListener.h"
|
| -#include "sky/engine/core/events/GestureEvent.h"
|
| #include "sky/engine/core/events/KeyboardEvent.h"
|
| #include "sky/engine/core/events/TextEvent.h"
|
| #include "sky/engine/core/events/UIEvent.h"
|
| @@ -1452,14 +1451,6 @@ bool Node::dispatchKeyEvent(const PlatformKeyboardEvent& event)
|
| return EventDispatcher::dispatchEvent(this, KeyboardEventDispatchMediator::create(KeyboardEvent::create(event, document().domWindow())));
|
| }
|
|
|
| -bool Node::dispatchGestureEvent(const PlatformGestureEvent& event)
|
| -{
|
| - RefPtr<GestureEvent> gestureEvent = GestureEvent::create(document().domWindow(), event);
|
| - if (!gestureEvent)
|
| - return false;
|
| - return EventDispatcher::dispatchEvent(this, GestureEventDispatchMediator::create(gestureEvent));
|
| -}
|
| -
|
| void Node::dispatchInputEvent()
|
| {
|
| dispatchScopedEvent(Event::createBubble(EventTypeNames::input));
|
|
|