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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2538483002: Add management related code to SafeBrowsingNavigationObserverManager (Closed)
Patch Set: address nits Created 4 years 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 | « testing/buildbot/filters/browser-side-navigation.linux.browser_tests.filter ('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 686021c772acdef887fefc302993b362f62fff11..946d67581994b5998cecdc6ba70b1a0dc0570b88 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -53614,6 +53614,33 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="SafeBrowsing.ReferrerAttributionResult"
+ enum="SafeBrowsingAttributionResultTypes">
+ <owner>jialiul@chromium.org</owner>
+ <summary>
+ The result of referrer attribution, including different types of success or
+ failure. This is incremented each time a safe browsing ping or download ping
+ is generated.
+ </summary>
+</histogram>
+
+<histogram name="SafeBrowsing.ReferrerHasInvalidTabID" enum="BooleanInvalid">
+ <owner>jialiul@chromium.org</owner>
+ <summary>
+ Number of times referrer attribution encounters an invalid tab ID. This is
+ incremented a safe browsing ping or download ping is generated and an
+ invalid tab ID is encountered during attribution.
+ </summary>
+</histogram>
+
+<histogram name="SafeBrowsing.ReferrerURLChainSize">
+ <owner>jialiul@chromium.org</owner>
+ <summary>
+ The length of referrer URL chain we get from referrer attribution. This is
+ incremented each time a safe browsing ping or download ping is generated.
+ </summary>
+</histogram>
+
<histogram name="SafeBrowsing.UnverifiedDownloads.Allowed"
enum="SBClientDownloadExtensions">
<owner>asanka@chromium.org</owner>
@@ -100967,6 +100994,14 @@ value.
<int value="1" label="Kill (He's dead, Jim!)"/>
</enum>
+<enum name="SafeBrowsingAttributionResultTypes" type="int">
+ <int value="1" label="SUCCESS"/>
+ <int value="2" label="SUCCESS_LANDING_PAGE"/>
+ <int value="3" label="SUCCESS_LANDING_REFERRER"/>
+ <int value="4" label="INVALID_URL"/>
+ <int value="5" label="NAVIGATION_EVENT_NOT_FOUND"/>
+</enum>
+
<enum name="SafeBrowsingParseV4HashResult" type="int">
<int value="0" label="PARSE_FROM_STRING_ERROR"/>
<int value="1" label="UNEXPECTED_THREAT_ENTRY_TYPE_ERROR"/>
@@ -113578,6 +113613,19 @@ value.
<affected-histogram name="Renderer4.ImageDecodeTaskDurationUs"/>
</histogram_suffixes>
+<histogram_suffixes name="ReferrerAttribution" separator=".">
+ <suffix name="DownloadAttribution" label="Download referrer attribution."/>
+ <suffix name="PhishingInterstitialAttribution"
+ label="Phishing interstitial referrer attribution."/>
+ <suffix name="MalwareInterstitialAttribution"
+ label="Malware interstitial referrer attribution."/>
+ <suffix name="UwsInterstitialAttribution"
+ label="UwS interstitial referrer attribution."/>
+ <affected-histogram name="SafeBrowsing.ReferrerAttributionResult"/>
+ <affected-histogram name="SafeBrowsing.ReferrerHasInvalidTabID"/>
+ <affected-histogram name="SafeBrowsing.ReferrerURLChainSize"/>
+</histogram_suffixes>
+
<histogram_suffixes name="RemoteProcessWarmStartFast" separator="">
<suffix name="" label="Normal start."/>
<suffix name="Fast"
« no previous file with comments | « testing/buildbot/filters/browser-side-navigation.linux.browser_tests.filter ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698