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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2208583006: UMA for pin unlock success/failure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fixed patch set 2 errors. Created 4 years, 4 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 29bd28575de8e128826d0575f666c29494cc543e..1f607c3fce7931c963c37545c73762567c734311 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -50631,6 +50631,22 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>How long it takes the swap ack to return after a swap.</summary>
</histogram>
+<histogram name="ScreenLocker.AuthenticationFailure" enum="UnlockFailureType">
+ <owner>sammiequon@chromium.org</owner>
+ <summary>
+ What type of authentication was attempted when the user failed to unlock the
+ lock screen.
+ </summary>
+</histogram>
+
+<histogram name="ScreenLocker.AuthenticationSuccess" enum="UnlockSuccessType">
+ <owner>sammiequon@chromium.org</owner>
+ <summary>
+ What type of authentication was attempted when the user successfully
+ unlocked the lock screen.
+ </summary>
+</histogram>
+
<histogram name="Sdch3.AdvertisedWithSecureScheme" enum="BooleanHttps">
<obsolete>
Experiment complete, histogram gathering code removed.
@@ -94434,6 +94450,16 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Group not reported and trial was disabled"/>
</enum>
+<enum name="UnlockFailureType" type="int">
+ <int value="0" label="Password"/>
+ <int value="1" label="Pin"/>
+</enum>
+
+<enum name="UnlockSuccessType" type="int">
+ <int value="0" label="Password"/>
+ <int value="1" label="Pin"/>
+</enum>
+
<enum name="UpdateEngineAttemptResult" type="int">
<int value="0" label="Update Succeeded"/>
<int value="1" label="Internal Error"/>

Powered by Google App Engine
This is Rietveld 408576698