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

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

Issue 2864493003: Deprecate CredentialRequestOptions.unmediated in favor mediation enum (Closed)
Patch Set: Test Comments Created 3 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 ae1b20bac0dd2555fe39ac703d85c2e0d56fceae..ada4e581475b34877a637870dd6be9cd83ccc570 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -49663,6 +49663,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="PasswordManager.GetMediated" enum="CredentialManagerGetResult">
+ <obsolete>
+ Deprecated as of 05/2017. This metric has been replaced by
+ PasswordManager.MediationOptional.
+ </obsolete>
<owner>vasilii@chromium.org</owner>
<summary>
Tracks result of navigator.credentials.get() with unmediated=false. That is
@@ -49672,6 +49676,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="PasswordManager.GetUnmediated"
enum="CredentialManagerGetResult">
+ <obsolete>
+ Deprecated as of 05/2017. This metric has been replaced by
+ PasswordManager.MediationSilent.
+ </obsolete>
<owner>vasilii@chromium.org</owner>
<summary>
Tracks result of navigator.credentials.get() with unmediated=true. That is
@@ -49797,6 +49805,37 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>An error on LoginDatabase initialization.</summary>
</histogram>
+<histogram name="PasswordManager.MediationOptional"
+ enum="CredentialManagerGetResult">
+ <owner>jdoerrie@chromium.org</owner>
+ <owner>vasilii@chromium.org</owner>
+ <summary>
+ Tracks result of navigator.credentials.get() with
+ mediation=&quot;optional&quot;. That is the result of account chooser.
+ </summary>
+</histogram>
+
+<histogram name="PasswordManager.MediationRequired"
+ enum="CredentialManagerGetResult">
+ <owner>jdoerrie@chromium.org</owner>
+ <owner>vasilii@chromium.org</owner>
+ <summary>
+ Tracks result of navigator.credentials.get() with
+ mediation=&quot;required&quot;. That is the result of forced account
+ chooser.
+ </summary>
+</histogram>
+
+<histogram name="PasswordManager.MediationSilent"
+ enum="CredentialManagerGetResult">
+ <owner>jdoerrie@chromium.org</owner>
+ <owner>vasilii@chromium.org</owner>
+ <summary>
+ Tracks result of navigator.credentials.get() with
+ mediation=&quot;silent&quot;. That is the result of auto sign-in.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.MultiAccountPasswordUpdateAction"
enum="MultiAccountUpdateBubbleUserAction">
<owner>dvadym@chromium.org</owner>

Powered by Google App Engine
This is Rietveld 408576698