Chromium Code Reviews| Index: Source/core/events/Event.h |
| diff --git a/Source/core/events/Event.h b/Source/core/events/Event.h |
| index 51231be70f885302e78bc7d14f58188091fff10a..d79e358601b2b41d899c2ea54f332b9c5760a585 100644 |
| --- a/Source/core/events/Event.h |
| +++ b/Source/core/events/Event.h |
| @@ -76,6 +76,12 @@ public: |
| CHANGE = 32768 |
| }; |
| + enum RailsMode { |
| + RailsModeFree = 0, |
| + RailsModeHorizontal = 1, |
| + RailsModeVertical = 2 |
| + }; |
| + |
| static PassRefPtrWillBeRawPtr<Event> create() |
| { |
| return adoptRefWillBeNoop(new Event); |