| Index: sky/engine/web/WebInputEventConversion.h
|
| diff --git a/sky/engine/web/WebInputEventConversion.h b/sky/engine/web/WebInputEventConversion.h
|
| index 2e7835d34dbff117ab97f9a749bca699799bd5b7..53572d217f527ce36eb5558ec02c5605ef98c44a 100644
|
| --- a/sky/engine/web/WebInputEventConversion.h
|
| +++ b/sky/engine/web/WebInputEventConversion.h
|
| @@ -31,27 +31,19 @@
|
| #ifndef SKY_ENGINE_WEB_WEBINPUTEVENTCONVERSION_H_
|
| #define SKY_ENGINE_WEB_WEBINPUTEVENTCONVERSION_H_
|
|
|
| -#include "sky/engine/platform/PlatformGestureEvent.h"
|
| #include "sky/engine/platform/PlatformKeyboardEvent.h"
|
| #include "sky/engine/public/platform/WebInputEvent.h"
|
|
|
| namespace blink {
|
|
|
| -class GestureEvent;
|
| class KeyboardEvent;
|
| class RenderObject;
|
| class WebKeyboardEvent;
|
| -class WebGestureEvent;
|
| class Widget;
|
|
|
| // These classes are used to convert from WebInputEvent subclasses to
|
| // corresponding WebCore events.
|
|
|
| -class PlatformGestureEventBuilder : public PlatformGestureEvent {
|
| -public:
|
| - PlatformGestureEventBuilder(Widget*, const WebGestureEvent&);
|
| -};
|
| -
|
| class PlatformKeyboardEventBuilder : public PlatformKeyboardEvent {
|
| public:
|
| PlatformKeyboardEventBuilder(const WebKeyboardEvent&);
|
| @@ -70,13 +62,6 @@ public:
|
| WebKeyboardEventBuilder(const PlatformKeyboardEvent&);
|
| };
|
|
|
| -// Converts GestureEvent to a corresponding WebGestureEvent.
|
| -// NOTE: If event mapping fails, the type will be set to Undefined.
|
| -class WebGestureEventBuilder : public WebGestureEvent {
|
| -public:
|
| - WebGestureEventBuilder(const Widget*, const RenderObject*, const GestureEvent&);
|
| -};
|
| -
|
| } // namespace blink
|
|
|
| #endif // SKY_ENGINE_WEB_WEBINPUTEVENTCONVERSION_H_
|
|
|