diff options
author | ksakamoto@chromium.org <ksakamoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-22 04:47:50 +0000 |
---|---|---|
committer | ksakamoto@chromium.org <ksakamoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-22 04:47:50 +0000 |
commit | eb21f234ae289696999b5ef17d5017a059381c48 (patch) | |
tree | 14a0a119cb17ff5516b6d6e10c5ca67eedc351be /tools | |
parent | 453dcce1899eed5a49e927fd855c08dd02fe4c80 (diff) | |
download | chromium_src-eb21f234ae289696999b5ef17d5017a059381c48.zip chromium_src-eb21f234ae289696999b5ef17d5017a059381c48.tar.gz chromium_src-eb21f234ae289696999b5ef17d5017a059381c48.tar.bz2 |
Add WebFont.CacheHit histogram to histograms.xml
The histogram was added here https://codereview.chromium.org/27468002
BUG=283631
NOTRY=true
Review URL: https://codereview.chromium.org/31583002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230051 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/metrics/histograms/histograms.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index b514fd9..f335cdf 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -19219,6 +19219,14 @@ other types of suffix sets. </summary> </histogram> +<histogram name="WebFont.CacheHit" enum="WebFontCacheHit"> + <summary> + Recorded upon web fonts load. Counts the number of times web font is loaded + from cache (disk cache or memory cache), fetched over network, or served + from data URL. + </summary> +</histogram> + <histogram name="WebFont.DownloadTime.0.Under10KB" units="milliseconds"> <summary> The time it takes for a webfont download to finish, for webfonts of under @@ -27965,6 +27973,12 @@ other types of suffix sets. <int value="11" label="Require phone number"/> </enum> +<enum name="WebFontCacheHit" type="int"> + <int value="0" label="Miss"/> + <int value="1" label="Hit"/> + <int value="2" label="Served from data URL"/> +</enum> + <enum name="WebFontUsageType" type="int"> <int value="0" label="Styled, and used"/> <int value="1" label="Styled, but not used"/> |