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

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

Issue 328973002: Add description for WebFont.PackageFormat histogram (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make Unknown the first bucket Created 6 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:
Download patch
« no previous file with comments | « no previous file | 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 32499f100af6094c24c9572bf9348c0e9067dd43..abecca8a3feb3deb08a73154d276e97173e14982 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -32066,6 +32066,15 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="WebFont.PackageFormat" enum="WebFontPackageFormat">
+ <owner>kenjibaheux@chromium.org</owner>
+ <owner>ksakamoto@chromium.org</owner>
+ <summary>
+ The packaging format of the font file (e.g. SFNT, WOFF ...) upon a webfont
+ load.
+ </summary>
+</histogram>
+
<histogram name="WebFont.Resource.StyleRecalcToDownloadLatency"
units="milliseconds">
<owner>kenjibaheux@chromium.org</owner>
@@ -44899,6 +44908,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="2" label="Previously in the cache"/>
</enum>
+<enum name="WebFontPackageFormat" type="int">
+ <int value="0" label="Unknown / Decode error"/>
+ <int value="1" label="SFNT"/>
+ <int value="2" label="WOFF"/>
+ <int value="3" label="WOFF 2.0"/>
+ <int value="4" label="SVG"/>
+</enum>
+
<enum name="WebFontUsageType" type="int">
<int value="0" label="Styled, and used"/>
<int value="1" label="Styled, but not used"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698