diff options
Diffstat (limited to 'WebCore/platform/PlatformWheelEvent.h')
-rw-r--r-- | WebCore/platform/PlatformWheelEvent.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebCore/platform/PlatformWheelEvent.h b/WebCore/platform/PlatformWheelEvent.h index 037c4b7..ae8df4e 100644 --- a/WebCore/platform/PlatformWheelEvent.h +++ b/WebCore/platform/PlatformWheelEvent.h @@ -51,6 +51,9 @@ class wxPoint; namespace WebCore { + class FloatPoint; + class FloatSize; + // Wheel events come in two flavors: // The ScrollByPixelWheelEvent is a fine-grained event that specifies the precise number of pixels to scroll. It is sent directly by MacBook touchpads on OS X, // and synthesized in other cases where platforms generate line-by-line scrolling events. @@ -99,6 +102,7 @@ namespace WebCore { #if PLATFORM(WIN) PlatformWheelEvent(HWND, WPARAM, LPARAM, bool isMouseHWheel); + PlatformWheelEvent(HWND, const FloatSize& delta, const FloatPoint& location); #endif #if PLATFORM(WX) |