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

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

Issue 859903002: Compare non-whitelisted off-domain inclusions against the browsing history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@#c3_ODID_async
Patch Set: merge and fix compile issues caused by trunk changes to ServiceAccessType Created 5 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 7964d1431c3354ab667643c8036a2c8b3bcfdfcd..a465a744da55cbd2c04f88c1336d12e39abf231f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -31426,6 +31426,57 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="SBOffDomainInclusion.AbortEmptyMainFrameURL"
Alexei Svitkine (slow) 2015/01/20 17:48:13 Have you considered naming these so the grouping i
gab 2015/01/20 18:10:48 How's redundancy reduced? They still all mean diff
Alexei Svitkine (slow) 2015/01/20 18:17:48 I believe each suffix can have a description that
gab 2015/01/20 18:51:57 What I was trying to say is that it feels weird th
+ enum="ContentResourceType">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis was aborted because the main frame URL was empty.
+ </summary>
+</histogram>
+
+<histogram name="SBOffDomainInclusion.AbortHistoryLookupFailed"
+ enum="ContentResourceType">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis was aborted because the lookup to the HistoryService
+ failed unexpectingly.
+ </summary>
+</histogram>
+
+<histogram name="SBOffDomainInclusion.AbortIncognito"
+ enum="ContentResourceType">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis was aborted because the profile associated with the frame
+ under analysis is an incognito profile.
+ </summary>
+</histogram>
+
+<histogram name="SBOffDomainInclusion.AbortNoHistoryService"
+ enum="ContentResourceType">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis was aborted because there was no HistoryService
+ associated with the profile of the frame under analysis. This can happen
+ seldomly on startup for early net requests but shouldn't be common.
+ </summary>
+</histogram>
+
+<histogram name="SBOffDomainInclusion.AbortNoProfile"
+ enum="ContentResourceType">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis was aborted because the profile associated with the frame
+ under analysis couldn't be resolved (expected to happen at a low frequency
+ by the asynchronous nature of the analysis).
+ </summary>
+</histogram>
+
<histogram name="SBOffDomainInclusion.Detected" enum="ContentResourceType">
<obsolete>
Deprecated 01/2015.
@@ -31439,6 +31490,9 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<histogram name="SBOffDomainInclusion.EmptyMainFrameURL"
enum="ContentResourceType">
+ <obsolete>
+ Deprecated 01/2015.
+ </obsolete>
<owner>gab@chromium.org</owner>
<summary>
Logs the resource type of each resource request for which the main frame URL
@@ -31446,8 +31500,21 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="SBOffDomainInclusion.InHistory" enum="ContentResourceType">
+ <owner>gab@chromium.org</owner>
+ <summary>
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis concluded in no inclusion whitelist hit but a browsing
+ history hit.
+ </summary>
+</histogram>
+
<histogram name="SBOffDomainInclusion.InvalidMainFrameURL"
enum="ContentResourceType">
+ <obsolete>
+ Deprecated 01/2015 (was never reported, confirming experiment that handling
+ it is irrelevant).
+ </obsolete>
<owner>gab@chromium.org</owner>
<summary>
Logs the resource type of each resource request for which the main frame URL
@@ -31476,9 +31543,8 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<histogram name="SBOffDomainInclusion.Whitelisted" enum="ContentResourceType">
<owner>gab@chromium.org</owner>
<summary>
- Logs the resource type of each resource request for which an off-domain
- inclusion was detected by the OffDomainInclusionDetector and ignored because
- it was present on the inclusion whitelist.
+ Logs the resource type of each resource request for which the off-domain
+ inclusion analysis concluded in an inclusion whitelist hit.
</summary>
</histogram>

Powered by Google App Engine
This is Rietveld 408576698