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

Side by Side Diff: ash/metrics/user_metrics_recorder.h

Issue 1169833006: Add metrics for when a cast is started or stopped from the system tray. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Address nit Created 5 years, 6 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
« no previous file with comments | « no previous file | ash/metrics/user_metrics_recorder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 UMA_STATUS_AREA_AUDIO_SWITCH_OUTPUT_DEVICE, 52 UMA_STATUS_AREA_AUDIO_SWITCH_OUTPUT_DEVICE,
53 UMA_STATUS_AREA_BRIGHTNESS_CHANGED, 53 UMA_STATUS_AREA_BRIGHTNESS_CHANGED,
54 UMA_STATUS_AREA_BLUETOOTH_CONNECT_KNOWN_DEVICE, 54 UMA_STATUS_AREA_BLUETOOTH_CONNECT_KNOWN_DEVICE,
55 UMA_STATUS_AREA_BLUETOOTH_CONNECT_UNKNOWN_DEVICE, 55 UMA_STATUS_AREA_BLUETOOTH_CONNECT_UNKNOWN_DEVICE,
56 UMA_STATUS_AREA_BLUETOOTH_DISABLED, 56 UMA_STATUS_AREA_BLUETOOTH_DISABLED,
57 UMA_STATUS_AREA_BLUETOOTH_ENABLED, 57 UMA_STATUS_AREA_BLUETOOTH_ENABLED,
58 UMA_STATUS_AREA_CAPS_LOCK_DETAILED, 58 UMA_STATUS_AREA_CAPS_LOCK_DETAILED,
59 UMA_STATUS_AREA_CAPS_LOCK_DISABLED_BY_CLICK, 59 UMA_STATUS_AREA_CAPS_LOCK_DISABLED_BY_CLICK,
60 UMA_STATUS_AREA_CAPS_LOCK_ENABLED_BY_CLICK, 60 UMA_STATUS_AREA_CAPS_LOCK_ENABLED_BY_CLICK,
61 UMA_STATUS_AREA_CAPS_LOCK_POPUP, 61 UMA_STATUS_AREA_CAPS_LOCK_POPUP,
62 UMA_STATUS_AREA_CAST_STOP_CAST,
62 UMA_STATUS_AREA_CONNECT_TO_CONFIGURED_NETWORK, 63 UMA_STATUS_AREA_CONNECT_TO_CONFIGURED_NETWORK,
63 UMA_STATUS_AREA_CONNECT_TO_UNCONFIGURED_NETWORK, 64 UMA_STATUS_AREA_CONNECT_TO_UNCONFIGURED_NETWORK,
64 UMA_STATUS_AREA_CONNECT_TO_VPN, 65 UMA_STATUS_AREA_CONNECT_TO_VPN,
65 UMA_STATUS_AREA_CHANGED_VOLUME_MENU, 66 UMA_STATUS_AREA_CHANGED_VOLUME_MENU,
66 UMA_STATUS_AREA_CHANGED_VOLUME_POPUP, 67 UMA_STATUS_AREA_CHANGED_VOLUME_POPUP,
67 UMA_STATUS_AREA_DETAILED_ACCESSABILITY, 68 UMA_STATUS_AREA_DETAILED_ACCESSABILITY,
68 UMA_STATUS_AREA_DETAILED_AUDIO_VIEW, 69 UMA_STATUS_AREA_DETAILED_AUDIO_VIEW,
69 UMA_STATUS_AREA_DETAILED_BLUETOOTH_VIEW, 70 UMA_STATUS_AREA_DETAILED_BLUETOOTH_VIEW,
70 UMA_STATUS_AREA_DETAILED_BRIGHTNESS_VIEW, 71 UMA_STATUS_AREA_DETAILED_BRIGHTNESS_VIEW,
71 UMA_STATUS_AREA_DETAILED_CAST_VIEW, 72 UMA_STATUS_AREA_DETAILED_CAST_VIEW,
73 UMA_STATUS_AREA_DETAILED_CAST_VIEW_LAUNCH_CAST,
72 UMA_STATUS_AREA_DETAILED_DRIVE_VIEW, 74 UMA_STATUS_AREA_DETAILED_DRIVE_VIEW,
73 UMA_STATUS_AREA_DETAILED_NETWORK_VIEW, 75 UMA_STATUS_AREA_DETAILED_NETWORK_VIEW,
74 UMA_STATUS_AREA_DETAILED_VPN_VIEW, 76 UMA_STATUS_AREA_DETAILED_VPN_VIEW,
75 UMA_STATUS_AREA_DISABLE_AUTO_CLICK, 77 UMA_STATUS_AREA_DISABLE_AUTO_CLICK,
76 UMA_STATUS_AREA_DISABLE_HIGH_CONTRAST, 78 UMA_STATUS_AREA_DISABLE_HIGH_CONTRAST,
77 UMA_STATUS_AREA_DISABLE_LARGE_CURSOR, 79 UMA_STATUS_AREA_DISABLE_LARGE_CURSOR,
78 UMA_STATUS_AREA_DISABLE_MAGNIFIER, 80 UMA_STATUS_AREA_DISABLE_MAGNIFIER,
79 UMA_STATUS_AREA_DISABLE_SPOKEN_FEEDBACK, 81 UMA_STATUS_AREA_DISABLE_SPOKEN_FEEDBACK,
80 UMA_STATUS_AREA_DISABLE_WIFI, 82 UMA_STATUS_AREA_DISABLE_WIFI,
81 UMA_STATUS_AREA_DISABLE_VIRTUAL_KEYBOARD, 83 UMA_STATUS_AREA_DISABLE_VIRTUAL_KEYBOARD,
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 base::RepeatingTimer<UserMetricsRecorder> timer_; 180 base::RepeatingTimer<UserMetricsRecorder> timer_;
179 181
180 TaskSwitchMetricsRecorder task_switch_metrics_recorder_; 182 TaskSwitchMetricsRecorder task_switch_metrics_recorder_;
181 183
182 DISALLOW_COPY_AND_ASSIGN(UserMetricsRecorder); 184 DISALLOW_COPY_AND_ASSIGN(UserMetricsRecorder);
183 }; 185 };
184 186
185 } // namespace ash 187 } // namespace ash
186 188
187 #endif // ASH_METRICS_USER_METRICS_RECORDER_H_ 189 #endif // ASH_METRICS_USER_METRICS_RECORDER_H_
OLDNEW
« no previous file with comments | « no previous file | ash/metrics/user_metrics_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698