1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
ash / metrics / user_metrics_recorder.h [blame]
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_METRICS_USER_METRICS_RECORDER_H_
#define ASH_METRICS_USER_METRICS_RECORDER_H_
#include <memory>
#include "ash/ash_export.h"
#include "ash/metrics/login_metrics_recorder.h"
#include "ash/metrics/task_switch_metrics_recorder.h"
#include "base/timer/timer.h"
namespace ash {
class DemoSessionMetricsRecorder;
class DesktopTaskSwitchMetricRecorder;
enum class DictationToggleSource;
class PointerMetricsRecorder;
class TouchUsageMetricsRecorder;
class StylusMetricsRecorder;
class WMFeatureMetricsRecorder;
// User Metrics Recorder provides a repeating callback (RecordPeriodicMetrics)
// on a timer to allow recording of state data over time to the UMA records.
// Any additional states (in ash) that require monitoring can be added to
// this class.
class ASH_EXPORT UserMetricsRecorder {
public:
// Creates a UserMetricsRecorder that records metrics periodically. Equivalent
// to calling UserMetricsRecorder(true).
UserMetricsRecorder();
UserMetricsRecorder(const UserMetricsRecorder&) = delete;
UserMetricsRecorder& operator=(const UserMetricsRecorder&) = delete;
virtual ~UserMetricsRecorder();
// Record user clicks on tray on lock, login screens and in OOBE.
static void RecordUserClickOnTray(
LoginMetricsRecorder::TrayClickTarget target);
// Record user clicks on shelf buttons on lock, login screens and in OOBE.
static void RecordUserClickOnShelfButton(
LoginMetricsRecorder::ShelfButtonClickTarget target);
// Starts recording demo session metrics. Used in Demo Mode.
void StartDemoSessionMetricsRecording();
TaskSwitchMetricsRecorder& task_switch_metrics_recorder() {
return task_switch_metrics_recorder_;
}
// Informs |this| that the Shell has been initialized.
void OnShellInitialized();
// Informs |this| that the Shell is going to be shut down.
void OnShellShuttingDown();
LoginMetricsRecorder* login_metrics_recorder() const {
return login_metrics_recorder_.get();
}
private:
friend class UserMetricsRecorderTestAPI;
// Creates a UserMetricsRecorder and will only record periodic metrics if
// |record_periodic_metrics| is true. This is used by tests that do not want
// the timer to be started.
// TODO(bruthig): Add a constructor that accepts a base::RepeatingTimer so
// that tests can inject a test double that can be controlled by the test. The
// missing piece is a suitable base::RepeatingTimer test double.
explicit UserMetricsRecorder(bool record_periodic_metrics);
// Records UMA metrics. Invoked periodically by the |timer_|.
void RecordPeriodicMetrics();
// Returns true if the user's session is active and they are in a desktop
// environment.
bool IsUserInActiveDesktopEnvironment() const;
// Starts the |timer_| and binds it to |RecordPeriodicMetrics|.
void StartTimer();
// The periodic timer that triggers metrics to be recorded.
base::RepeatingTimer timer_;
TaskSwitchMetricsRecorder task_switch_metrics_recorder_;
// Metric recorder to track how often task windows are activated by mouse
// clicks or touchscreen taps.
std::unique_ptr<DesktopTaskSwitchMetricRecorder>
desktop_task_switch_metric_recorder_;
// Metric recorder to track pointer down events.
std::unique_ptr<PointerMetricsRecorder> pointer_metrics_recorder_;
// Metric recorder to track input device usage.
std::unique_ptr<TouchUsageMetricsRecorder> touch_usage_metrics_recorder_;
// Metric recorder to track stylus events.
std::unique_ptr<StylusMetricsRecorder> stylus_metrics_recorder_;
// Metric recorder to track login authentication activity.
std::unique_ptr<LoginMetricsRecorder> login_metrics_recorder_;
// Metric recorder to track app use in demo sessions.
std::unique_ptr<DemoSessionMetricsRecorder> demo_session_metrics_recorder_;
// Metrics recorder to track window management related usage.
std::unique_ptr<WMFeatureMetricsRecorder> wm_feature_metrics_recorder_;
};
} // namespace ash
#endif // ASH_METRICS_USER_METRICS_RECORDER_H_