OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef ASH_COMMON_METRICS_GESTURE_ACTION_TYPE_H_ | 5 #ifndef ASH_METRICS_GESTURE_ACTION_TYPE_H_ |
6 #define ASH_COMMON_METRICS_GESTURE_ACTION_TYPE_H_ | 6 #define ASH_METRICS_GESTURE_ACTION_TYPE_H_ |
7 | 7 |
8 namespace ash { | 8 namespace ash { |
9 | 9 |
10 enum GestureActionType { | 10 enum GestureActionType { |
11 GESTURE_UNKNOWN, | 11 GESTURE_UNKNOWN, |
12 GESTURE_OMNIBOX_PINCH, | 12 GESTURE_OMNIBOX_PINCH, |
13 GESTURE_OMNIBOX_SCROLL, | 13 GESTURE_OMNIBOX_SCROLL, |
14 GESTURE_TABSTRIP_PINCH, | 14 GESTURE_TABSTRIP_PINCH, |
15 GESTURE_TABSTRIP_SCROLL, | 15 GESTURE_TABSTRIP_SCROLL, |
16 GESTURE_BEZEL_SCROLL, | 16 GESTURE_BEZEL_SCROLL, |
(...skipping 13 matching lines...) Expand all Loading... |
30 GESTURE_FRAMEVIEW_TAP, | 30 GESTURE_FRAMEVIEW_TAP, |
31 GESTURE_MAXIMIZE_DOUBLETAP, | 31 GESTURE_MAXIMIZE_DOUBLETAP, |
32 // NOTE: Add new action types only immediately above this line. Also, | 32 // NOTE: Add new action types only immediately above this line. Also, |
33 // make sure the enum list in tools/histogram/histograms.xml is | 33 // make sure the enum list in tools/histogram/histograms.xml is |
34 // updated with any change in here. | 34 // updated with any change in here. |
35 GESTURE_ACTION_COUNT | 35 GESTURE_ACTION_COUNT |
36 }; | 36 }; |
37 | 37 |
38 } // namespace ash | 38 } // namespace ash |
39 | 39 |
40 #endif // ASH_COMMON_METRICS_GESTURE_ACTION_TYPE_H_ | 40 #endif // ASH_METRICS_GESTURE_ACTION_TYPE_H_ |
OLD | NEW |