| 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_COMMON_METRICS_USER_METRICS_ACTION_H_ |
| 6 #define ASH_COMMON_METRICS_USER_METRICS_ACTION_H_ | 6 #define ASH_COMMON_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. |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 119 |
| 120 // Thumbnail sized overview of windows triggered by pressing the overview key. | 120 // Thumbnail sized overview of windows triggered by pressing the overview key. |
| 121 UMA_WINDOW_OVERVIEW, | 121 UMA_WINDOW_OVERVIEW, |
| 122 | 122 |
| 123 // User selected a window in overview mode different from the | 123 // User selected a window in overview mode different from the |
| 124 // previously-active window. | 124 // previously-active window. |
| 125 UMA_WINDOW_OVERVIEW_ACTIVE_WINDOW_CHANGED, | 125 UMA_WINDOW_OVERVIEW_ACTIVE_WINDOW_CHANGED, |
| 126 | 126 |
| 127 // Selecting a window in overview mode by pressing the enter key. | 127 // Selecting a window in overview mode by pressing the enter key. |
| 128 UMA_WINDOW_OVERVIEW_ENTER_KEY, | 128 UMA_WINDOW_OVERVIEW_ENTER_KEY, |
| 129 |
| 130 // Closing a window in overview mode by clicking the 'X' button. |
| 131 UMA_WINDOW_OVERVIEW_CLOSE_BUTTON, |
| 132 |
| 133 // Closing a window in overview mode by pressing Ctrl+w shortcut. |
| 134 UMA_WINDOW_OVERVIEW_CLOSE_KEY, |
| 129 }; | 135 }; |
| 130 | 136 |
| 131 } // namespace ash | 137 } // namespace ash |
| 132 | 138 |
| 133 #endif // ASH_COMMON_METRICS_USER_METRICS_ACTION_H_ | 139 #endif // ASH_COMMON_METRICS_USER_METRICS_ACTION_H_ |
| OLD | NEW |