| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 // so the values can be cast between the enumerations. static_asserts | 195 // so the values can be cast between the enumerations. static_asserts |
| 196 // checking this are in web/WebInputEventConversion.cpp. | 196 // checking this are in web/WebInputEventConversion.cpp. |
| 197 enum DispatchType { | 197 enum DispatchType { |
| 198 // Event can be canceled. | 198 // Event can be canceled. |
| 199 Blocking, | 199 Blocking, |
| 200 // Event can not be canceled. | 200 // Event can not be canceled. |
| 201 EventNonBlocking, | 201 EventNonBlocking, |
| 202 // All listeners are passive; not cancelable. | 202 // All listeners are passive; not cancelable. |
| 203 ListenersNonBlockingPassive, | 203 ListenersNonBlockingPassive, |
| 204 // This value represents a state which would have normally blocking | 204 // This value represents a state which would have normally blocking |
| 205 // but was forced to be non-blocking; not cancelable. | 205 // but was forced to be non-blocking during fling; not cancelable. |
| 206 ListenersForcedNonBlockingPassive, | 206 ListenersForcedNonBlockingPassiveDueToFling, |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 // The rail mode for a wheel event specifies the axis on which scrolling is | 209 // The rail mode for a wheel event specifies the axis on which scrolling is |
| 210 // expected to stick. If this axis is set to Free, then scrolling is not | 210 // expected to stick. If this axis is set to Free, then scrolling is not |
| 211 // stuck to any axis. | 211 // stuck to any axis. |
| 212 enum RailsMode { | 212 enum RailsMode { |
| 213 RailsModeFree = 0, | 213 RailsModeFree = 0, |
| 214 RailsModeHorizontal = 1, | 214 RailsModeHorizontal = 1, |
| 215 RailsModeVertical = 2, | 215 RailsModeVertical = 2, |
| 216 }; | 216 }; |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 , uniqueTouchEventId(0) | 656 , uniqueTouchEventId(0) |
| 657 { | 657 { |
| 658 } | 658 } |
| 659 }; | 659 }; |
| 660 | 660 |
| 661 #pragma pack(pop) | 661 #pragma pack(pop) |
| 662 | 662 |
| 663 } // namespace blink | 663 } // namespace blink |
| 664 | 664 |
| 665 #endif | 665 #endif |
| OLD | NEW |