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
ash / wm / overview / overview_metrics.h [blame]
// Copyright 2021 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_WM_OVERVIEW_OVERVIEW_METRICS_H_
#define ASH_WM_OVERVIEW_OVERVIEW_METRICS_H_
#include "ash/ash_export.h"
#include "ash/wm/overview/overview_types.h"
#include "base/time/time.h"
#include "ui/compositor/presentation_time_recorder.h"
namespace ash {
// Used for histograms. Current values should not be renumbered or removed.
// Please keep in sync with "OverviewStartAction" in
// tools/metrics/histograms/metadata/ash/enums.xml.
enum class OverviewStartAction {
kSplitView,
kAccelerator,
kDragWindowFromShelf,
kExitHomeLauncher,
kOverviewButton,
kOverviewButtonLongPress,
kBentoBar_DEPRECATED,
k3FingerVerticalScroll,
kDevTools,
kTests,
kOverviewDeskSwitch,
kDeskButton,
// Partial overview shows automatically on one window snapped.
kFasterSplitScreenSetup,
kPine,
kWallpaper,
kMaxValue = kWallpaper,
};
void RecordOverviewStartAction(OverviewStartAction type);
// Used for histograms. Current values should not be renumbered or removed.
// Please keep in sync with "OverviewEndAction" in
// tools/metrics/histograms/metadata/ash/enums.xml.
enum class OverviewEndAction {
kSplitView,
kDragWindowFromShelf,
kEnterHomeLauncher,
kClickingOutsideWindowsInOverview,
kWindowActivating,
kLastWindowRemoved,
kDisplayAdded,
kAccelerator,
kKeyEscapeOrBack,
kDeskActivation,
kOverviewButton,
kOverviewButtonLongPress,
k3FingerVerticalScroll,
kEnabledDockedMagnifier,
kUserSwitch,
kStartedWindowCycle,
kShuttingDown,
kAppListActivatedInClamshell,
kShelfAlignmentChanged,
kDevTools,
kTests,
kShowGlanceables_DEPRECATED,
kWindowDeactivating,
kFullRestore,
kPine,
kCoral,
kMaxValue = kCoral,
};
void RecordOverviewEndAction(OverviewEndAction type);
inline constexpr char kExitOverviewPresentationHistogram[] =
"Ash.Overview.Exit.PresentationTime2";
inline constexpr char kOverviewDelayedDeskBarPresentationHistogram[] =
"Ash.Overview.DelayedDeskBar.PresentationTime";
const ui::PresentationTimeRecorder::BucketParams&
GetOverviewPresentationTimeBucketParams();
// Returns metric name with format:
// "Ash.Overview.Enter.PresentationTime.{OverviewStartReason}"
//
// This segments the overview presentation time into separate categories/use
// cases that have different profiles and characteristics and hence, should be
// analyzed independently.
ASH_EXPORT const char* GetOverviewEnterPresentationTimeMetricName(
OverviewStartAction start_action);
} // namespace ash
#endif // ASH_WM_OVERVIEW_OVERVIEW_METRICS_H_