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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 23140005: Added of new UMA signals in order to be able to discover early if the "save password" feature gets … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor changes Created 7 years, 3 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 22ea39517c626dd490c1216b8d92a18c1c58e3d6..0bae5604224c92b2a7c179eb39fe3eb80c9de9c4 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -10446,6 +10446,13 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="PasswordManager.Enabled" enum="BooleanEnabled">
+ <summary>
+ Indicates whether the password manager is enabled when a tab is opened. This
+ includes prerendered tabs.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.OtherPossibleUsernamesUsage"
enum="OtherPossibleUsernamesUsage">
<summary>
@@ -10462,6 +10469,27 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="PasswordManager.SavePasswordPromptDisappearedQuickly"
+ enum="Boolean">
+ <summary>
+ Indicates whether the save password prompt disappeared in less than one
+ second. This most likely indicates that the prompt was dismissed
+ automatically, e.g. due to a page navigation, before the user was able to
+ respond to the infobar.
+ </summary>
+</histogram>
+
+<histogram name="PasswordManager.SavePasswordPromptDisplayed" enum="Boolean">
+ <summary>Indicates whether the save password prompt was displayed.</summary>
+</histogram>
+
+<histogram name="PasswordManager.SavePasswordPromptResponse"
+ enum="SavePasswordPromptResponseType">
+ <summary>
+ Breakdown of which response the user selected from the save password prompt.
+ </summary>
+</histogram>
+
<histogram name="PasswordManager.TimesGeneratedPasswordUsed">
<summary>
The number of times each generated password has been used to log in.
@@ -24193,6 +24221,12 @@ other types of suffix sets.
</int>
</enum>
+<enum name="SavePasswordPromptResponseType" type="int">
+ <int value="0" label="NO_RESPONSE"/>
+ <int value="1" label="REMEMBER_PASSWORD"/>
+ <int value="2" label="DONT_REMEMBER_PASSWORD"/>
+</enum>
+
<enum name="SB2BloomFailure" type="int">
<int value="0" label="READ_OPEN"/>
<int value="1" label="READ_VERSION"/>
@@ -27439,6 +27473,25 @@ other types of suffix sets.
<affected-histogram name="Renderer4.BeginToFinishDoc"/>
</fieldtrial>
+<fieldtrial name="PasswordManagerMonitor">
+ <group name="group_1" label="group 1"/>
+ <group name="group_2" label="group 2"/>
+ <group name="group_3" label="group 3"/>
+ <group name="group_4" label="group 4"/>
+ <group name="group_5" label="group 5"/>
+ <group name="group_6" label="group 6"/>
+ <group name="group_7" label="group 7"/>
+ <group name="group_8" label="group 8"/>
+ <group name="group_9" label="group 9"/>
+ <group name="group_10" label="group 10"/>
Ilya Sherman 2013/09/14 05:35:54 There are 20 groups, right?
jdomingos 2013/09/14 05:47:35 You are right.
+ <group name="" label=""/>
+ <affected-histogram name="PasswordManager.ProvisionalSaveFailure"/>
+ <affected-histogram
+ name="PasswordManager.SavePasswordPromptDisappearedQuickly"/>
+ <affected-histogram name="PasswordManager.SavePasswordPromptDisplayed"/>
+ <affected-histogram name="PasswordManager.SavePasswordPromptResponse"/>
+</fieldtrial>
+
<fieldtrial name="PpapiPluginName">
<group name="libpepflashplayer.so" label="Flash player on Linux or Cros"/>
<group name="libwidevinecdmadapter.so" label="Widevine CDM on Linux or Cros"/>

Powered by Google App Engine
This is Rietveld 408576698