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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2895233002: Measure how often HTTPS credentials cannot be filled into HTTP forms. (Closed)
Patch Set: Fix password_manager_unittests. 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
« no previous file with comments | « tools/metrics/histograms/enums.xml ('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 fb8f675c224d8e0873bb6e9543b644ce2e9abf0a..f965924e74f8635fcc559e2512f9c018e0941bb6 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -50096,6 +50096,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PasswordManager.QueryingSuppressedAccountsFinished"
+ enum="Boolean">
+ <owner>engedy@chromium.org</owner>
+ <summary>
+ Records, for each password form seen by the password manager, whether the
+ PasswordStore responded quickly enough so that
+ PasswordManager.SuppressedAccount histogram samples could be computed.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.SavePasswordPromptDisappearedQuickly"
enum="Boolean">
<obsolete>
@@ -50293,6 +50303,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PasswordManager.SuppressedAccount"
+ enum="PasswordManagerSuppressedAccountCrossActionsTaken">
+ <owner>engedy@chromium.org</owner>
+ <summary>
+ Records, for each password form seen by the password manager, whether there
+ were `suppressed` credentials, meaning stored credentials that were not
+ filled because they were for an origin that was similar to, but not exactly
+ (or PSL) matching the origin of the observed form (see the suffix
+ description for the possible classes of such near-matches). If there were
+ such credentials, the histogram also records whether the username and
+ password of such suppressed credentials matched those submitted.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.SyncCredentialFiltered"
enum="CredentialFilteredType">
<owner>gcasto@chromium.org</owner>
@@ -90810,6 +90834,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<affected-histogram name="PasswordManager.SavePasswordPromptResponse"/>
</histogram_suffixes>
+<histogram_suffixes name="PasswordManagerSuppressedAccountReason">
+ <suffix name="HTTPSNotHTTP"
+ label="The credential was suppressed because it was for an HTTPS origin
+ whereas the observed form was for an HTTP origin."/>
+ <affected-histogram name="PasswordManager.SuppressedAccount"/>
rkaplow 2017/05/24 17:40:37 this should have both Generated and Manual here
engedy 2017/05/24 17:46:59 Do you mean this? <histogram_suffixes name="Passw
+</histogram_suffixes>
+
+<histogram_suffixes name="PasswordManagerSuppressedAccountType">
+ <suffix name="Generated" label="The password was originally auto-generated."/>
+ <suffix name="Manual"
+ label="The password was originally typed in by the user."/>
+ <affected-histogram name="PasswordManager.SuppressedAccount"/>
+</histogram_suffixes>
+
<histogram_suffixes name="PasswordProtectionTrigger" separator=".">
<suffix name="PasswordFieldOnFocus"
label="Password protection triggered by password field on focus event."/>
« no previous file with comments | « tools/metrics/histograms/enums.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698