| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 Undefined = -1, | 87 Undefined = -1, |
| 88 TypeFirst = Undefined, | 88 TypeFirst = Undefined, |
| 89 | 89 |
| 90 // WebMouseEvent | 90 // WebMouseEvent |
| 91 MouseDown, | 91 MouseDown, |
| 92 MouseTypeFirst = MouseDown, | 92 MouseTypeFirst = MouseDown, |
| 93 MouseUp, | 93 MouseUp, |
| 94 MouseMove, | 94 MouseMove, |
| 95 MouseEnter, | 95 MouseEnter, |
| 96 MouseLeave, | 96 MouseLeave, |
| 97 ContextMenu, | 97 MouseTypeLast = MouseLeave, |
| 98 MouseTypeLast = ContextMenu, | |
| 99 | 98 |
| 100 // WebMouseWheelEvent | 99 // WebMouseWheelEvent |
| 101 MouseWheel, | 100 MouseWheel, |
| 102 | 101 |
| 103 // WebKeyboardEvent | 102 // WebKeyboardEvent |
| 104 RawKeyDown, | 103 RawKeyDown, |
| 105 KeyboardTypeFirst = RawKeyDown, | 104 KeyboardTypeFirst = RawKeyDown, |
| 106 KeyDown, | 105 KeyDown, |
| 107 KeyUp, | 106 KeyUp, |
| 108 Char, | 107 Char, |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 , cancelable(true) | 511 , cancelable(true) |
| 513 { | 512 { |
| 514 } | 513 } |
| 515 }; | 514 }; |
| 516 | 515 |
| 517 #pragma pack(pop) | 516 #pragma pack(pop) |
| 518 | 517 |
| 519 } // namespace blink | 518 } // namespace blink |
| 520 | 519 |
| 521 #endif | 520 #endif |
| OLD | NEW |