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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1441393002: Add UMA to count the number of Google CAPTCHA pages shown and solved by users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed to using histogram, updated test Created 5 years, 1 month 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 4ee71d1be34b2cfc6f01bf37d6a6629de9ccaa62..102412ab8395778d80fb88eb6d6db2ea9ce34afb 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -14176,6 +14176,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Http response codes in NetworkLocationRequest.</summary>
</histogram>
+<histogram name="GoogleCaptcha.Event" enum="GoogleCaptchaEvent">
Alexei Svitkine (slow) 2015/11/13 19:41:57 How about re-using the histogram name prefix that'
Matt Welsh 2015/11/13 20:15:19 Done.
+ <owner>mdw@chromium.org</owner>
+ <summary>Events related to Google CAPTCHA pages being seen by users.</summary>
+</histogram>
+
<histogram name="GoogleNow.Card.Button.Clicked0" enum="GoogleNowCardTypeId">
<owner>robliao@chromium.org</owner>
<owner>skare@chromium.org</owner>
@@ -62864,6 +62869,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="6" label="UNSET"/>
</enum>
+<enum name="GoogleCaptchaEvent" type="int">
+ <int value="0" label="Google CAPTCHA shown"/>
+ <int value="1" label="Google CAPTCHA solved"/>
+</enum>
+
<enum name="GoogleNowCardTypeId" type="int">
<summary>
Represents a card type ID. See cardTypeId in

Powered by Google App Engine
This is Rietveld 408576698