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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 276433003: UMA metrics added for HID detection dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fixes Created 6 years, 7 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index effeaca8b132c0f3726905d58de33cee865f16cb..70b86be3a503ac330a4d69e40f37b03ef9fdc467 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -7813,6 +7813,31 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="HIDDetection.OOBEDevicesDetectedOnContinuePressed"
+ enum="HIDContinueScenarioType">
+ <owner>merkulova@chromium.org</owner>
+ <summary>
+ Which HID were detected when user pressed Continue on OOBE dialog. This
+ metric is specific to ChromeOS.
+ </summary>
+</histogram>
+
+<histogram name="HIDDetection.OOBEDialogShown">
+ <owner>merkulova@chromium.org</owner>
+ <summary>
+ Whether HID detection dialog was shown on OOBE. Logged on screen show or on
+ screen skip respectively. This metric is specific to ChromeOS.
+ </summary>
+</histogram>
+
+<histogram name="HIDDetection.TimesDialogShownPerOOBECompleted">
+ <owner>merkulova@chromium.org</owner>
+ <summary>
+ Records number of times the dialog was shown by the time OOBE is completed.
+ This metric is specific to ChromeOS.
+ </summary>
+</histogram>
+
<histogram name="History.DeleteFTSIndexDatabases">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>
@@ -36181,6 +36206,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="12" label="SERVICE_ERROR"/>
</enum>
+<enum name="HIDContinueScenarioType" type="int">
+ <summary>Possible detected devices combination on leaving dialog</summary>
+ <int value="0" label="Pointing device only detected."/>
+ <int value="1" label="Keyboard device only detected."/>
+ <int value="2" label="Both devices, pointing and keyboard, detected."/>
+</enum>
+
<enum name="HistoryFaviconsRecoveryEnum" type="int">
<summary>Error states noted in thumbnail_database.cc recovery code.</summary>
<int value="0" label="RECOVERY_EVENT_RECOVERED">Successful recovery.</int>

Powered by Google App Engine
This is Rietveld 408576698