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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
ash / user_education / welcome_tour / welcome_tour_metrics.h [blame]
// Copyright 2023 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_USER_EDUCATION_WELCOME_TOUR_WELCOME_TOUR_METRICS_H_
#define ASH_USER_EDUCATION_WELCOME_TOUR_WELCOME_TOUR_METRICS_H_
#include <string>
#include "ash/ash_export.h"
#include "base/containers/enum_set.h"
class PrefService;
namespace base {
class TimeDelta;
} // namespace base
namespace ash::welcome_tour_metrics {
// Enums -----------------------------------------------------------------------
// Enumeration of reasons the Welcome Tour may be aborted. These values are
// persisted to logs. Entries should not be renumbered and numeric values should
// never be reused.
enum class AbortedReason {
kMinValue = 0,
kUnknown = kMinValue,
kAccelerator = 1,
kChromeVoxEnabled = 2,
kTabletModeEnabled = 3,
kUserDeclinedTour = 4,
kShutdown = 5,
kMaxValue = kShutdown,
};
// Enumeration of when ChromeVox is enabled in the Welcome Tour. These values
// are persisted to logs. Entries should not be renumbered and numeric values
// should never be reused.
enum class ChromeVoxEnabled {
kMinValue = 0,
kBeforeTour = kMinValue,
kDuringTour = 1,
kMaxValue = kDuringTour,
};
// Enumeration of the experimental arm in which the user was active when an
// attempt was made to show the Welcome Tour. These values are persisted to
// logs. Entries should not be renumbered and numeric values should never be
// reused.
enum class ExperimentalArm {
kMinValue = 0,
kHoldback = kMinValue,
kV1 = 1,
// kV2 = 2, Deprecated.
kV3 = 3,
kMaxValue = kV3,
};
static constexpr auto kAllExperimentalArmsSet =
base::EnumSet<ExperimentalArm,
ExperimentalArm::kMinValue,
ExperimentalArm::kMaxValue>({
ExperimentalArm::kHoldback,
ExperimentalArm::kV1,
ExperimentalArm::kV3,
});
// Enumeration of interactions users may engage in after the Welcome Tour. These
// values are persisted to logs. Entries should not be renumbered and numeric
// values should never be reused. Be sure to update `kAllInteractionsSet`
// accordingly.
enum class Interaction {
kMinValue = 0,
kFilesApp = kMinValue,
kLauncher = 1,
kQuickSettings = 2,
kSearch = 3,
kSettingsApp = 4,
kExploreApp = 5,
kMaxValue = kExploreApp,
};
static constexpr auto kAllInteractionsSet =
base::EnumSet<Interaction, Interaction::kMinValue, Interaction::kMaxValue>({
Interaction::kExploreApp,
Interaction::kFilesApp,
Interaction::kLauncher,
Interaction::kQuickSettings,
Interaction::kSearch,
Interaction::kSettingsApp,
});
// Enumeration of reasons the Welcome Tour may be prevented. These values are
// persisted to logs. Entries should not be renumbered and numeric values should
// never be reused. Be sure to update `kAllPreventedReasonsSet` accordingly.
enum class PreventedReason {
kMinValue = 0,
kUnknown = kMinValue,
kChromeVoxEnabled = 1,
// kCounterfactualExperimentArm = 2, Deprecated.
kManagedAccount = 3,
kTabletModeEnabled = 4,
kUserNewnessNotAvailable = 5,
kUserNotNewCrossDevice = 6,
kUserTypeNotRegular = 7,
kUserNotNewLocally = 8,
kHoldbackExperimentArm = 9,
kMaxValue = kHoldbackExperimentArm,
};
static constexpr auto kAllPreventedReasonsSet =
base::EnumSet<PreventedReason,
PreventedReason::kMinValue,
PreventedReason::kMaxValue>({
PreventedReason::kUnknown,
PreventedReason::kChromeVoxEnabled,
PreventedReason::kManagedAccount,
PreventedReason::kTabletModeEnabled,
PreventedReason::kUserNewnessNotAvailable,
PreventedReason::kUserNotNewCrossDevice,
PreventedReason::kUserTypeNotRegular,
PreventedReason::kUserNotNewLocally,
PreventedReason::kHoldbackExperimentArm,
});
// Enumeration of steps in the Welcome Tour. These values are persisted to logs.
// Entries should not be renumbered and numeric values should never be reused.
enum class Step {
kMinValue = 0,
kDialog = kMinValue,
kExploreApp = 1,
kExploreAppWindow = 2,
kHomeButton = 3,
kSearch = 4,
kSettingsApp = 5,
kShelf = 6,
kStatusArea = 7,
kFilesApp = 8,
kMaxValue = kFilesApp,
};
// Enumeration of results recorded for each attempt to show the Welcome Tour to
// the user. These values are persisted to logs. Entries should not be
// renumbered and numeric values should never be reused.
enum class TourResult {
kMinValue = 0,
kAborted = kMinValue,
kCompleted = 1,
// kHoldback = 2, Deprecated.
kMaxValue = kCompleted,
};
// Utilities -------------------------------------------------------------------
// Attempts to activate an experimental arm if and only if the user was
// previously active in an experimental arm during the first attempt to show the
// Welcome Tour.
ASH_EXPORT void MaybeActivateExperimentalArm(PrefService* prefs);
// Record the experimental arm in which the user was active when the first
// attempt was made to show the Welcome Tour.
ASH_EXPORT void MaybeRecordExperimentalArm(PrefService* prefs);
// Record the usage of ChromeVox in the Welcome Tour.
ASH_EXPORT void RecordChromeVoxEnabled(ChromeVoxEnabled when);
// Record that a given `interaction` has occurred.
ASH_EXPORT void RecordInteraction(PrefService* prefs, Interaction interaction);
// Record that the given `step` of the Welcome Tour was aborted.
ASH_EXPORT void RecordStepAborted(Step step);
// Record the `duration` that a `step` of the Welcome Tour was shown.
ASH_EXPORT void RecordStepDuration(Step step, base::TimeDelta duration);
// Record that the given `step` of the Welcome Tour was shown.
ASH_EXPORT void RecordStepShown(Step step);
// Record that the Welcome Tour was aborted for the given `reason`.
ASH_EXPORT void RecordTourAborted(AbortedReason reason);
// Record the `duration` of the Welcome Tour as a whole. If the tour was not
// fully completed, `completed` should be false.
ASH_EXPORT void RecordTourDuration(PrefService* prefs,
base::TimeDelta duration,
bool completed);
// Record that the Welcome Tour was prevented for the given `reason`.
ASH_EXPORT void RecordTourPrevented(PrefService* prefs, PreventedReason reason);
// Record the result for an attempt to show the Welcome Tour to the user.
ASH_EXPORT void RecordTourResult(TourResult result);
// Returns a string representation of the given `interaction`.
ASH_EXPORT std::string ToString(Interaction interaction);
// Returns a string representation of the given `step`.
ASH_EXPORT std::string ToString(Step step);
} // namespace ash::welcome_tour_metrics
#endif // ASH_USER_EDUCATION_WELCOME_TOUR_WELCOME_TOUR_METRICS_H_