Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Side by Side Diff: components/mus/public/interfaces/input_event_constants.mojom

Issue 1759273002: Add AcceleratorType to EventMatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698