| Index: ui/mojo/events/input_event_constants.mojom
|
| diff --git a/ui/mojo/events/input_event_constants.mojom b/ui/mojo/events/input_event_constants.mojom
|
| index b3e0ea1f663ef3f2009d200bf22859aa8ada5688..9b22e9843768a261bc77931e5a3b456ea04f3845 100644
|
| --- a/ui/mojo/events/input_event_constants.mojom
|
| +++ b/ui/mojo/events/input_event_constants.mojom
|
| @@ -12,6 +12,7 @@ enum EventType {
|
| POINTER_DOWN,
|
| POINTER_MOVE,
|
| POINTER_UP,
|
| + WHEEL,
|
| };
|
|
|
| // This mirrors ui::EventFlags
|
| @@ -41,6 +42,14 @@ enum MouseEventFlags {
|
| };
|
|
|
| enum PointerKind {
|
| - TOUCH,
|
| MOUSE,
|
| + PEN,
|
| + TOUCH,
|
| +};
|
| +
|
| +enum WheelMode {
|
| + PIXEL,
|
| + LINE,
|
| + PAGE,
|
| + SCALING,
|
| };
|
|
|