Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.h

Issue 2646163002: Remove PlatformTouchEvent/Point and use WebTouchEvent/Point instead (Closed)
Patch Set: Fix nit Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « third_party/WebKit/Source/core/events/UIEventWithKeyState.cpp ('k') | third_party/WebKit/Source/core/input/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698