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

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

Issue 2586133003: Remove PlatformWheelEvent and use WebMouseWheelEvent instead (Closed)
Patch Set: Adjust function name 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 0d6cca770f5bb3b71218c7d14a6046509822537b..9f29bc4de5d6a87f98db9977bb5c601fa526f886 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.h
+++ b/third_party/WebKit/Source/core/input/EventHandler.h
@@ -70,12 +70,12 @@ class LocalFrame;
class Node;
class OptionalCursor;
class PlatformTouchEvent;
-class PlatformWheelEvent;
class ScrollableArea;
class Scrollbar;
class SelectionController;
class TextEvent;
class WebGestureEvent;
+class WebMouseWheelEvent;
class CORE_EXPORT EventHandler final
: public GarbageCollectedFinalized<EventHandler> {
@@ -149,7 +149,7 @@ class CORE_EXPORT EventHandler final
WebInputEventResult handleMousePressEvent(const PlatformMouseEvent&);
WebInputEventResult handleMouseReleaseEvent(const PlatformMouseEvent&);
- WebInputEventResult handleWheelEvent(const PlatformWheelEvent&);
+ WebInputEventResult handleWheelEvent(const WebMouseWheelEvent&);
// Called on the local root frame exactly once per gesture event.
WebInputEventResult handleGestureEvent(const WebGestureEvent&);
« no previous file with comments | « third_party/WebKit/Source/core/events/WheelEvent.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