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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1304573004: Added UMA statistics for change passwords in the Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 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 | « components/password_manager/core/browser/password_manager_metrics_util.cc ('k') | 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 f902fef66ac13e9ec8246a00241eee5447fe5cd4..d83f5f10ce503c97dba52a9c005a94d860b2777d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -29427,6 +29427,22 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PasswordManager.UpdatePasswordSubmissionEvent"
+ enum="UpdatePasswordSubmissionEvent">
+ <owner>dvadym@chromium.org</owner>
+ <owner>vasilii@chromium.org</owner>
+ <summary>
+ The password submission event happened when the user changes her password on
+ a website, say foo.com or types new password on a sign-in form for saved
+ credential (which might mean that the password was changed in a different
+ browser). The later case called password overriding. This histogram measures
+ whether the user has any passwords saved in the Chrome password manager for
+ foo.com or the password was overriden on sign-in form, and what action the
+ user performed on the offered bubble. It's recorded when the bubble is
+ closed.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.UserStoredPasswordWithInvalidSSLCert"
enum="Boolean">
<owner>xunlu@chromium.org</owner>
@@ -66115,6 +66131,8 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="5"
label="Opened automatically / Offering a credential to choose"/>
<int value="6" label="Opened automatically / Auto-signin toast"/>
+ <int value="7" label="Opened manually / Offering a password to update"/>
+ <int value="8" label="Opened automatically / Offering a password to update"/>
</enum>
<enum name="PasswordFormQueryVolume" type="int">
@@ -72229,6 +72247,21 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2" label="Forced Full"/>
</enum>
+<enum name="UpdatePasswordSubmissionEvent" type="int">
+ <int value="0" label="NO_ACCOUNTS_CLICKED_UPDATE"/>
+ <int value="1" label="NO_ACCOUNTS_CLICKED_NOPE"/>
+ <int value="2" label="NO_ACCOUNTS_NO_INTERACTION"/>
+ <int value="3" label="ONE_ACCOUNT_CLICKED_UPDATE"/>
+ <int value="4" label="ONE_ACCOUNT_CLICKED_NOPE"/>
+ <int value="5" label="ONE_ACCOUNT_NO_INTERACTION"/>
+ <int value="6" label="MULTIPLE_ACCOUNTS_CLICKED_UPDATE"/>
+ <int value="7" label="MULTIPLE_ACCOUNTS_CLICKED_NOPE"/>
+ <int value="8" label="MULTIPLE_ACCOUNTS_NO_INTERACTION"/>
+ <int value="9" label="PASSWORD_OVERRIDDEN_CLICKED_UPDATE"/>
+ <int value="10" label="PASSWORD_OVERRIDDEN_CLICKED_NOPE"/>
+ <int value="11" label="PASSWORD_OVERRIDDEN_NO_INTERACTION"/>
+</enum>
+
<enum name="UpdatePolicy" type="int">
<int value="0" label="UPDATES_DISABLED"/>
<int value="1" label="AUTOMATIC_UPDATES"/>
« no previous file with comments | « components/password_manager/core/browser/password_manager_metrics_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698