| 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_USER_METRICS_ACTION_H_ | 5 #ifndef ASH_METRICS_USER_METRICS_ACTION_H_ |
| 6 #define ASH_COMMON_METRICS_USER_METRICS_ACTION_H_ | 6 #define ASH_METRICS_USER_METRICS_ACTION_H_ |
| 7 | 7 |
| 8 namespace ash { | 8 namespace ash { |
| 9 | 9 |
| 10 // Ash-owned user metrics. | 10 // Ash-owned user metrics. |
| 11 enum UserMetricsAction { | 11 enum UserMetricsAction { |
| 12 UMA_ACCEL_EXIT_FIRST_Q, | 12 UMA_ACCEL_EXIT_FIRST_Q, |
| 13 UMA_ACCEL_EXIT_SECOND_Q, | 13 UMA_ACCEL_EXIT_SECOND_Q, |
| 14 UMA_ACCEL_KEYBOARD_BRIGHTNESS_DOWN_F6, | 14 UMA_ACCEL_KEYBOARD_BRIGHTNESS_DOWN_F6, |
| 15 UMA_ACCEL_KEYBOARD_BRIGHTNESS_UP_F7, | 15 UMA_ACCEL_KEYBOARD_BRIGHTNESS_UP_F7, |
| 16 UMA_ACCEL_LOCK_SCREEN_LOCK_BUTTON, | 16 UMA_ACCEL_LOCK_SCREEN_LOCK_BUTTON, |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 // Closing a window in overview mode by clicking the 'X' button. | 141 // Closing a window in overview mode by clicking the 'X' button. |
| 142 UMA_WINDOW_OVERVIEW_CLOSE_BUTTON, | 142 UMA_WINDOW_OVERVIEW_CLOSE_BUTTON, |
| 143 | 143 |
| 144 // Closing a window in overview mode by pressing Ctrl+w shortcut. | 144 // Closing a window in overview mode by pressing Ctrl+w shortcut. |
| 145 UMA_WINDOW_OVERVIEW_CLOSE_KEY, | 145 UMA_WINDOW_OVERVIEW_CLOSE_KEY, |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // namespace ash | 148 } // namespace ash |
| 149 | 149 |
| 150 #endif // ASH_COMMON_METRICS_USER_METRICS_ACTION_H_ | 150 #endif // ASH_METRICS_USER_METRICS_ACTION_H_ |
| OLD | NEW |