Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module mus.mojom; | 5 module mus.mojom; |
| 6 | 6 |
| 7 enum AcceleratorType { | |
| 8 PRE_TARGET, | |
|
sky
2016/03/03 23:41:24
Document what these mean.
jonross
2016/03/04 15:26:37
Done.
| |
| 9 POST_TARGET, | |
| 10 }; | |
| 11 | |
| 7 enum EventType { | 12 enum EventType { |
| 8 UNKNOWN, | 13 UNKNOWN, |
| 9 KEY_PRESSED, | 14 KEY_PRESSED, |
| 10 KEY_RELEASED, | 15 KEY_RELEASED, |
| 11 POINTER_CANCEL, | 16 POINTER_CANCEL, |
| 12 POINTER_DOWN, | 17 POINTER_DOWN, |
| 13 POINTER_MOVE, | 18 POINTER_MOVE, |
| 14 POINTER_UP, | 19 POINTER_UP, |
| 15 MOUSE_EXIT, | 20 MOUSE_EXIT, |
| 16 WHEEL, | 21 WHEEL, |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 46 PEN, | 51 PEN, |
| 47 TOUCH, | 52 TOUCH, |
| 48 }; | 53 }; |
| 49 | 54 |
| 50 enum WheelMode { | 55 enum WheelMode { |
| 51 PIXEL, | 56 PIXEL, |
| 52 LINE, | 57 LINE, |
| 53 PAGE, | 58 PAGE, |
| 54 SCALING, | 59 SCALING, |
| 55 }; | 60 }; |
| OLD | NEW |