| 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 ui.mojom; |
| 6 | 6 |
| 7 // Denotes during which phase of event targeting that an accelerator will be | 7 // Denotes during which phase of event targeting that an accelerator will be |
| 8 // notified of an event. PRE_TARGET will be notified instead of the target | 8 // notified of an event. PRE_TARGET will be notified instead of the target |
| 9 // window. POST_TARGET will be notified after the target window, and only if the | 9 // window. POST_TARGET will be notified after the target window, and only if the |
| 10 // event was not consumed by the target. | 10 // event was not consumed by the target. |
| 11 enum AcceleratorPhase { | 11 enum AcceleratorPhase { |
| 12 PRE_TARGET, | 12 PRE_TARGET, |
| 13 POST_TARGET, | 13 POST_TARGET, |
| 14 }; | 14 }; |
| 15 | 15 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 PEN, | 55 PEN, |
| 56 TOUCH, | 56 TOUCH, |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 enum WheelMode { | 59 enum WheelMode { |
| 60 PIXEL, | 60 PIXEL, |
| 61 LINE, | 61 LINE, |
| 62 PAGE, | 62 PAGE, |
| 63 SCALING, | 63 SCALING, |
| 64 }; | 64 }; |
| OLD | NEW |