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

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

Issue 2329613002: Split SVGImage-related cases into separate UseCounter histograms (Closed)
Patch Set: Fix wording Created 4 years, 3 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 | « third_party/WebKit/Source/core/page/Page.cpp ('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 e8671dc9551b1779a3a8de1214d94fcf1bb9af5f..3c0f3546347c19103e0aa3cfd826d0107f10943e 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -66465,10 +66465,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<details>
The first time a CSS property is parsed on a page, the histogram is updated
to increment the counter. Each histogram bucket corresponds to a CSS
- property (eg. width, border-radius). The exception is the bucket numbered
- '1' - this counts the number of pages that CSS properties were counted on.
- When a page navigation occurs the page count bucket is incremented and
- tracking of the set of which properties have been seen is reset.
+ property (eg. width, border-radius). The exception is the 'Total pages
+ measured' bucket - this counts the number of pages that CSS properties were
+ counted on. When a page navigation occurs the page count bucket is
+ incremented and tracking of the set of which properties have been seen is
+ reset.
These numbers give the percentage of pages that use a CSS property. For
example, if the 'border-radius' histogram bucket has a count of 250, and the
@@ -66497,6 +66498,36 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</details>
</histogram>
+<histogram name="WebCore.UseCounter_TEST.SVGImage.CSSProperties"
+ enum="MappedCSSProperties">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Like WebCore.UseCounter_TEST.CSSProperties but specifically for the case of
+ CSS properties used inside of an SVG image.
+ </summary>
+ <details>
+ The 'Total pages measured' bucket is incremented each time a new SVG image
+ is created. Note that the same SVG image can be used across multiple tabs
+ in a single renderer but this counts as a single usage. See
+ http://crbug.com/236262.
+ </details>
+</histogram>
+
+<histogram name="WebCore.UseCounter_TEST.SVGImage.Features"
+ enum="FeatureObserver">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Like WebCore.UseCounter_TEST.Features except specifically for the case of
+ SVG Images.
+ </summary>
+ <details>
+ Count of how many SVG images use various features. The PageVisits bucket is
+ incremented each time a new SVG image is created. Note that the same SVG
+ image can be used across multiple tabs in a single renderer but this counts
+ as a single usage. See http://crbug.com/236262.
+ </details>
+</histogram>
+
<histogram name="WebCore.V8DOMWindowShell.createContext.IsolatedWorld"
units="ms">
<obsolete>
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698