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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 468433003: [EasyUnlock] Add a histogram measuring the state of the remote device's lock screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index b18ee6ec230c578381352c4f4ca3c5ece056728c..766c070f198a2e4ab1c117c05c73beb042b67da5 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5716,6 +5716,21 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="EasyUnlock.RemoteLockScreenState"
+ enum="EasyUnlockRemoteLockScreenState">
+ <owner>joshwoodward@google.com</owner>
+ <owner>tengs@chromium.org</owner>
+ <owner>isherman@chromium.org</owner>
+ <summary>
+ Whether a lock screen and a trust agent are enabled on the remote device
+ (Android phone) for Easy Unlock. Recorded once per status update message
+ from the remote device. A status update message is expected to be sent once
+ when the secure channel between the local and the remote device is
+ established, and also each time the user-presence status changes on the
+ remote side.
jwd 2014/08/14 15:06:15 Can these messages occur at any time? Or will this
Ilya Sherman 2014/08/14 20:32:50 The bug is out of date; these messages can occur a
+ </summary>
+</histogram>
+
<histogram name="EasyUnlock.SetupStateOnClose" enum="EasyUnlockSetupState">
<owner>joshwoodward@google.com</owner>
<owner>tbarzic@chromium.org</owner>
@@ -38675,6 +38690,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="3" label="Try out notification clicked"/>
</enum>
+<enum name="EasyUnlockRemoteLockScreenState" type="int">
+ <int value="0" label="Unknown state"/>
+ <int value="1" label="Lock screen disabled, trust agent unsupported"/>
+ <int value="2" label="Lock screen disabled, trust agent disabled"/>
+ <int value="3" label="Lock screen disabled, trust agent enabled"/>
+ <int value="4" label="Lock screen enabled, trust agent unsupported"/>
+ <int value="5" label="Lock screen enabled, trust agent disabled"/>
+ <int value="6" label="Lock screen enabled, trust agent enabled"/>
+</enum>
+
<enum name="EasyUnlockSetupState" type="int">
<int value="0" label="Success"/>
<int value="1" label="Scan (initial)"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698