OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_METRICS_USER_METRICS_RECORDER_H_ | 5 #ifndef ASH_METRICS_USER_METRICS_RECORDER_H_ |
6 #define ASH_METRICS_USER_METRICS_RECORDER_H_ | 6 #define ASH_METRICS_USER_METRICS_RECORDER_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "ash/metrics/task_switch_metrics_recorder.h" | 9 #include "ash/metrics/task_switch_metrics_recorder.h" |
10 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 UMA_LAUNCHER_SWITCH_TASK, | 39 UMA_LAUNCHER_SWITCH_TASK, |
40 UMA_MAXIMIZE_MODE_DISABLED, | 40 UMA_MAXIMIZE_MODE_DISABLED, |
41 UMA_MAXIMIZE_MODE_ENABLED, | 41 UMA_MAXIMIZE_MODE_ENABLED, |
42 UMA_MAXIMIZE_MODE_INITIALLY_DISABLED, | 42 UMA_MAXIMIZE_MODE_INITIALLY_DISABLED, |
43 UMA_MOUSE_DOWN, | 43 UMA_MOUSE_DOWN, |
44 UMA_PANEL_MINIMIZE_CAPTION_CLICK, | 44 UMA_PANEL_MINIMIZE_CAPTION_CLICK, |
45 UMA_PANEL_MINIMIZE_CAPTION_GESTURE, | 45 UMA_PANEL_MINIMIZE_CAPTION_GESTURE, |
46 UMA_SHELF_ALIGNMENT_SET_BOTTOM, | 46 UMA_SHELF_ALIGNMENT_SET_BOTTOM, |
47 UMA_SHELF_ALIGNMENT_SET_LEFT, | 47 UMA_SHELF_ALIGNMENT_SET_LEFT, |
48 UMA_SHELF_ALIGNMENT_SET_RIGHT, | 48 UMA_SHELF_ALIGNMENT_SET_RIGHT, |
| 49 UMA_SCREEN_EVENT_SWITCH_TASK, |
49 UMA_STATUS_AREA_AUDIO_CURRENT_INPUT_DEVICE, | 50 UMA_STATUS_AREA_AUDIO_CURRENT_INPUT_DEVICE, |
50 UMA_STATUS_AREA_AUDIO_CURRENT_OUTPUT_DEVICE, | 51 UMA_STATUS_AREA_AUDIO_CURRENT_OUTPUT_DEVICE, |
51 UMA_STATUS_AREA_AUDIO_SWITCH_INPUT_DEVICE, | 52 UMA_STATUS_AREA_AUDIO_SWITCH_INPUT_DEVICE, |
52 UMA_STATUS_AREA_AUDIO_SWITCH_OUTPUT_DEVICE, | 53 UMA_STATUS_AREA_AUDIO_SWITCH_OUTPUT_DEVICE, |
53 UMA_STATUS_AREA_BRIGHTNESS_CHANGED, | 54 UMA_STATUS_AREA_BRIGHTNESS_CHANGED, |
54 UMA_STATUS_AREA_BLUETOOTH_CONNECT_KNOWN_DEVICE, | 55 UMA_STATUS_AREA_BLUETOOTH_CONNECT_KNOWN_DEVICE, |
55 UMA_STATUS_AREA_BLUETOOTH_CONNECT_UNKNOWN_DEVICE, | 56 UMA_STATUS_AREA_BLUETOOTH_CONNECT_UNKNOWN_DEVICE, |
56 UMA_STATUS_AREA_BLUETOOTH_DISABLED, | 57 UMA_STATUS_AREA_BLUETOOTH_DISABLED, |
57 UMA_STATUS_AREA_BLUETOOTH_ENABLED, | 58 UMA_STATUS_AREA_BLUETOOTH_ENABLED, |
58 UMA_STATUS_AREA_CAPS_LOCK_DETAILED, | 59 UMA_STATUS_AREA_CAPS_LOCK_DETAILED, |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 base::RepeatingTimer<UserMetricsRecorder> timer_; | 179 base::RepeatingTimer<UserMetricsRecorder> timer_; |
179 | 180 |
180 TaskSwitchMetricsRecorder task_switch_metrics_recorder_; | 181 TaskSwitchMetricsRecorder task_switch_metrics_recorder_; |
181 | 182 |
182 DISALLOW_COPY_AND_ASSIGN(UserMetricsRecorder); | 183 DISALLOW_COPY_AND_ASSIGN(UserMetricsRecorder); |
183 }; | 184 }; |
184 | 185 |
185 } // namespace ash | 186 } // namespace ash |
186 | 187 |
187 #endif // ASH_METRICS_USER_METRICS_RECORDER_H_ | 188 #endif // ASH_METRICS_USER_METRICS_RECORDER_H_ |
OLD | NEW |