OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 KeyDown, | 106 KeyDown, |
107 KeyUp, | 107 KeyUp, |
108 Char, | 108 Char, |
109 KeyboardTypeLast = Char, | 109 KeyboardTypeLast = Char, |
110 | 110 |
111 // WebGestureEvent | 111 // WebGestureEvent |
112 GestureScrollBegin, | 112 GestureScrollBegin, |
113 GestureTypeFirst = GestureScrollBegin, | 113 GestureTypeFirst = GestureScrollBegin, |
114 GestureScrollEnd, | 114 GestureScrollEnd, |
115 GestureScrollUpdate, | 115 GestureScrollUpdate, |
116 GestureScrollUpdateWithoutPropagation, | |
117 GestureFlingStart, | 116 GestureFlingStart, |
118 GestureFlingCancel, | 117 GestureFlingCancel, |
119 GestureShowPress, | 118 GestureShowPress, |
120 GestureTap, | 119 GestureTap, |
121 GestureTapUnconfirmed, | 120 GestureTapUnconfirmed, |
122 GestureTapDown, | 121 GestureTapDown, |
123 GestureTapCancel, | 122 GestureTapCancel, |
124 GestureDoubleTap, | 123 GestureDoubleTap, |
125 GestureTwoFingerTap, | 124 GestureTwoFingerTap, |
126 GestureLongPress, | 125 GestureLongPress, |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 , causesScrollingIfUncanceled(false) | 515 , causesScrollingIfUncanceled(false) |
517 { | 516 { |
518 } | 517 } |
519 }; | 518 }; |
520 | 519 |
521 #pragma pack(pop) | 520 #pragma pack(pop) |
522 | 521 |
523 } // namespace blink | 522 } // namespace blink |
524 | 523 |
525 #endif | 524 #endif |
OLD | NEW |