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

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

Issue 151503006: Re-land r248110 with ASAN error fixed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Punctuation Created 6 years, 11 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/autofill/core/common/password_generation_util.h ('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 cada217fd968dc8cd90fd8ba9f5df7d534680bd4..89b9895e2e62ecc087cfc55e41792b13265e16bc 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12587,6 +12587,19 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="PasswordGeneration.Event" enum="PasswordGenerationEvent">
+ <summary>
+ Measures the frequency of various password generation events.
+
+ Note that this histogram is logged from the renderer process, and
+ consequently the numbers should not be directly compared to the other
+ PasswordGeneration.* histograms, which are logged from the browser process.
+ Histograms logged in different processes are lost at different rates, which
+ introduces systematic bias between histograms logged in the renderer process
+ vs. those logged in the browser process.
+ </summary>
+</histogram>
+
<histogram name="PasswordGeneration.UploadStarted" enum="Boolean">
<summary>
The number of times that we try to upload a form that we believe should
@@ -28815,6 +28828,19 @@ other types of suffix sets.
<int value="3" label="Cookie contains both control chars and is invalid"/>
</enum>
+<enum name="PasswordGenerationEvent" type="int">
+ <int value="0" label="No sign up form"/>
+ <int value="1" label="Local heuristics found sign up form"/>
+ <int value="2" label="DEPRECATED: Icon shown"/>
+ <int value="3" label="DEPRECATED: Bubble shown"/>
+ <int value="4" label="Generation available"/>
+ <int value="5" label="Generation popup shown"/>
+ <int value="6" label="Generated password accepted"/>
+ <int value="7" label="Editing popup shown"/>
+ <int value="8" label="Generated password edited"/>
+ <int value="9" label="Generated password deleted"/>
+</enum>
+
<enum name="PasswordManagerActionsTaken" type="int">
<obsolete>
Deprecated as of Chrome 32. See PasswordManagerActionsTakenWithPsl
« no previous file with comments | « components/autofill/core/common/password_generation_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698