Index: third_party/WebKit/Source/core/input/EventHandler.h |
diff --git a/third_party/WebKit/Source/core/input/EventHandler.h b/third_party/WebKit/Source/core/input/EventHandler.h |
index 785b8b1a0200f5e23646a35242ff982192038691..152219ddecb379a07f19f7e5a48465fe9c6d26d7 100644 |
--- a/third_party/WebKit/Source/core/input/EventHandler.h |
+++ b/third_party/WebKit/Source/core/input/EventHandler.h |
@@ -39,7 +39,6 @@ |
#include "core/style/ComputedStyleConstants.h" |
#include "platform/Cursor.h" |
#include "platform/PlatformMouseEvent.h" |
-#include "platform/PlatformTouchPoint.h" |
#include "platform/UserGestureIndicator.h" |
#include "platform/geometry/LayoutPoint.h" |
#include "platform/heap/Handle.h" |
@@ -69,13 +68,13 @@ class LayoutObject; |
class LocalFrame; |
class Node; |
class OptionalCursor; |
-class PlatformTouchEvent; |
class ScrollableArea; |
class Scrollbar; |
class SelectionController; |
class TextEvent; |
class WebGestureEvent; |
class WebMouseWheelEvent; |
+class WebTouchEvent; |
class CORE_EXPORT EventHandler final |
: public GarbageCollectedFinalized<EventHandler> { |
@@ -225,8 +224,8 @@ class CORE_EXPORT EventHandler final |
void capsLockStateMayHaveChanged(); // Only called by FrameSelection |
WebInputEventResult handleTouchEvent( |
- const PlatformTouchEvent&, |
- const Vector<PlatformTouchEvent>& coalescedEvents); |
+ const WebTouchEvent&, |
+ const Vector<WebTouchEvent>& coalescedEvents); |
bool useHandCursor(Node*, bool isOverLink); |