OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 MouseReleased, | 45 MouseReleased, |
46 MouseScroll, | 46 MouseScroll, |
47 | 47 |
48 // PlatformWheelEvent | 48 // PlatformWheelEvent |
49 Wheel, | 49 Wheel, |
50 | 50 |
51 // PlatformGestureEvent | 51 // PlatformGestureEvent |
52 GestureScrollBegin, | 52 GestureScrollBegin, |
53 GestureScrollEnd, | 53 GestureScrollEnd, |
54 GestureScrollUpdate, | 54 GestureScrollUpdate, |
55 GestureScrollUpdateWithoutPropagation, | |
56 GestureTap, | 55 GestureTap, |
57 GestureTapUnconfirmed, | 56 GestureTapUnconfirmed, |
58 GestureTapDown, | 57 GestureTapDown, |
59 GestureShowPress, | 58 GestureShowPress, |
60 GestureTapDownCancel, | 59 GestureTapDownCancel, |
61 GestureTwoFingerTap, | 60 GestureTwoFingerTap, |
62 GestureLongPress, | 61 GestureLongPress, |
63 GestureLongTap, | 62 GestureLongTap, |
64 GesturePinchBegin, | 63 GesturePinchBegin, |
65 GesturePinchEnd, | 64 GesturePinchEnd, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 } | 134 } |
136 | 135 |
137 unsigned m_type; | 136 unsigned m_type; |
138 unsigned m_modifiers; | 137 unsigned m_modifiers; |
139 double m_timestamp; | 138 double m_timestamp; |
140 }; | 139 }; |
141 | 140 |
142 } // namespace blink | 141 } // namespace blink |
143 | 142 |
144 #endif // PlatformEvent_h | 143 #endif // PlatformEvent_h |
OLD | NEW |