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

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

Issue 15881012: Implement safebrowsing download feedback service, enabled for dev & canary only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_switches.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 4c8a628462f2f3ad3ee72979610909a22f9ed800..55abeaed89fa1725254bec906b5e6f3016d69a88 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -941,6 +941,13 @@ other types of suffix sets.
<summary>TBD</summary>
</histogram>
+<histogram name="clickjacking.report_and_discard_download" units="ms">
+ <summary>
+ Time between &quot;Report and Discard&quot; button being shown and it being
+ clicked.
+ </summary>
+</histogram>
+
<histogram name="clickjacking.save_download">
<summary>TBD</summary>
</histogram>
@@ -10581,6 +10588,53 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="SBDownloadFeedback.Activations" enum="DownloadItem.DangerType">
+ <summary>
+ Count of times download feedback has been started, broken down by danger
+ type.
+ </summary>
+</histogram>
+
+<histogram name="SBDownloadFeedback.ActiveFeedbacks">
+ <summary>
+ When a new download feedback request is added, records the number of
+ download requests currently active and/or pending.
+ </summary>
+</histogram>
+
+<histogram name="SBDownloadFeedback.Shown" enum="DownloadItem.DangerType">
+ <summary>
+ Count of times download feedback button has been shown, broken down by
+ danger type.
+ </summary>
+</histogram>
+
+<histogram name="SBDownloadFeedback.SizeEligibleKB" units="KB">
+ <summary>
+ Size of downloads that were of the correct danger type, regardless if they
+ meet the max file size check or if they are actually uploaded or not.
+ </summary>
+</histogram>
+
+<histogram name="SBDownloadFeedback.SizeFailure" units="bytes">
Ilya Sherman 2013/06/14 23:26:28 Why are this histogram and the one below in bytes,
+ <summary>
+ Size of downloads that failed to be uploaded to the feedback service.
+ </summary>
+</histogram>
+
+<histogram name="SBDownloadFeedback.SizeSuccess" units="bytes">
+ <summary>
+ Size of downloads that were successfully uploaded to the feedback service.
+ </summary>
+</histogram>
+
+<histogram name="SBDownloadFeedback.UploadResult"
+ enum="SBDownloadFeedbackUploadResult">
+ <summary>
+ Final result of attempt to upload binary to download feedback service.
+ </summary>
+</histogram>
+
<histogram name="Search.DefaultSearchProvider" enum="OmniboxSearchEngine">
<summary>
The id of the default search engine that is loaded after Chrome startup. See
@@ -17223,6 +17277,17 @@ other types of suffix sets.
<int value="5" label="MODEL_MISSING_FIELDS"/>
</enum>
+<enum name="SBDownloadFeedbackUploadResult" type="int">
+ <int value="0" label="SUCCESS"/>
+ <int value="1" label="UPLOAD_SUCCESS"/>
+ <int value="2" label="UPLOAD_CANCELLED"/>
+ <int value="3" label="UPLOAD_METADATA_NET_ERROR"/>
+ <int value="4" label="UPLOAD_METADATA_RESPONSE_ERROR"/>
+ <int value="5" label="UPLOAD_FILE_NET_ERROR"/>
+ <int value="6" label="UPLOAD_FILE_RESPONSE_ERROR"/>
+ <int value="7" label="UPLOAD_COMPLETE_RESPONSE_ERROR"/>
+</enum>
+
<enum name="ShillTerminationActionResult" type="int">
<summary>
The termination action result types come from TerminationActionResult in
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698