| Index: third_party/WebKit/Source/web/AssertMatchingEnums.cpp
|
| diff --git a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
|
| index f746f7bbf5d3fc3d14733befa91b1958b37663b6..baf6de2a8ee9b9267c74b1280d7692cbb2d30e9c 100644
|
| --- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
|
| +++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
|
| @@ -37,6 +37,9 @@
|
| #include "core/editing/SelectionType.h"
|
| #include "core/editing/TextAffinity.h"
|
| #include "core/editing/markers/DocumentMarker.h"
|
| +#if OS(MACOSX)
|
| +#include "core/events/WheelEvent.h"
|
| +#endif
|
| #include "core/fileapi/FileError.h"
|
| #include "core/frame/Frame.h"
|
| #include "core/frame/FrameTypes.h"
|
| @@ -507,6 +510,24 @@ STATIC_ASSERT_ENUM(WebMouseEvent::ButtonLeft, LeftButton);
|
| STATIC_ASSERT_ENUM(WebMouseEvent::ButtonMiddle, MiddleButton);
|
| STATIC_ASSERT_ENUM(WebMouseEvent::ButtonRight, RightButton);
|
|
|
| +#if OS(MACOSX)
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseNone, PlatformWheelEventPhaseNone);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseBegan, PlatformWheelEventPhaseBegan);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseStationary, PlatformWheelEventPhaseStationary);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseChanged, PlatformWheelEventPhaseChanged);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseEnded, PlatformWheelEventPhaseEnded);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseCancelled, PlatformWheelEventPhaseCancelled);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseMayBegin, PlatformWheelEventPhaseMayBegin);
|
| +
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseNone, WheelEventPhaseNone);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseBegan, WheelEventPhaseBegan);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseStationary, WheelEventPhaseStationary);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseChanged, WheelEventPhaseChanged);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseEnded, WheelEventPhaseEnded);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseCancelled, WheelEventPhaseCancelled);
|
| +STATIC_ASSERT_ENUM(WebMouseWheelEvent::PhaseMayBegin, WheelEventPhaseMayBegin);
|
| +#endif
|
| +
|
| STATIC_ASSERT_ENUM(WebScrollbar::Horizontal, HorizontalScrollbar);
|
| STATIC_ASSERT_ENUM(WebScrollbar::Vertical, VerticalScrollbar);
|
|
|
|
|