| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 GesturePinchEnd, | 132 GesturePinchEnd, |
| 133 GesturePinchUpdate, | 133 GesturePinchUpdate, |
| 134 GestureTypeLast = GesturePinchUpdate, | 134 GestureTypeLast = GesturePinchUpdate, |
| 135 | 135 |
| 136 // WebTouchEvent | 136 // WebTouchEvent |
| 137 TouchStart, | 137 TouchStart, |
| 138 TouchTypeFirst = TouchStart, | 138 TouchTypeFirst = TouchStart, |
| 139 TouchMove, | 139 TouchMove, |
| 140 TouchEnd, | 140 TouchEnd, |
| 141 TouchCancel, | 141 TouchCancel, |
| 142 TouchTypeLast = TouchCancel, | 142 TouchScrollStarted, |
| 143 TouchTypeLast = TouchScrollStarted, |
| 143 | 144 |
| 144 TypeLast = TouchTypeLast | 145 TypeLast = TouchTypeLast |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 // The modifier constants cannot change their values since pepper | 148 // The modifier constants cannot change their values since pepper |
| 148 // does a 1-1 mapping of its values; see | 149 // does a 1-1 mapping of its values; see |
| 149 // content/renderer/pepper/event_conversion.cc | 150 // content/renderer/pepper/event_conversion.cc |
| 150 // | 151 // |
| 151 // A Java counterpart will be generated for this enum. | 152 // A Java counterpart will be generated for this enum. |
| 152 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.blink_public.web | 153 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.blink_public.web |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 , uniqueTouchEventId(0) | 623 , uniqueTouchEventId(0) |
| 623 { | 624 { |
| 624 } | 625 } |
| 625 }; | 626 }; |
| 626 | 627 |
| 627 #pragma pack(pop) | 628 #pragma pack(pop) |
| 628 | 629 |
| 629 } // namespace blink | 630 } // namespace blink |
| 630 | 631 |
| 631 #endif | 632 #endif |
| OLD | NEW |