Update histogram names for WebFont usage metrics

Changing the histogram names since the definition of the histogram changed in
https://codereview.chromium.org/23720005

BUG=246492
NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/23511012

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221352 0039d316-1c4b-4281-b951-d872f2087c98
parent b87bfcd9
......@@ -17744,7 +17744,33 @@ other types of suffix sets.
</summary>
</histogram>
<histogram name="WebFont.Resource.StyleRecalcToDownloadLatency"
units="milliseconds">
<summary>
The time from when the webfont was referenced by a calculated style for the
first time to the start of the font download. Recorded at most once for each
FontResource object (not recorded if the font is retrieved from the memory
cache).
</summary>
</histogram>
<histogram name="WebFont.Resource.UsageType" enum="WebFontUsageType">
<summary>
For each webfont, this records (a) if the font was 'styled', i.e. referenced
by a calculated style for a RenderText before the font data was used, and
(b) if the font was actually used or not, i.e. the renderer requested the
font data or not. (A Font can be used without being styled, for example when
drawn by a Canvas 2D Context.) This is recorded upon a download request of a
webfont, or destruction of a FontResource object. Recorded at most once for
each FontResource object in the renderer's memory cahce.
</summary>
</histogram>
<histogram name="WebFont.StyleRecalcToDownloadLatency" units="milliseconds">
<obsolete>
Deprecated as of 9/2013, replaced by
WebFont.Resource.StyleRecalcToDownloadLatency.
</obsolete>
<summary>
The time from when the webfont was referenced by a calculated style for the
first time to the start of the font download.
......@@ -17752,6 +17778,9 @@ other types of suffix sets.
</histogram>
<histogram name="WebFont.UsageType" enum="WebFontUsageType">
<obsolete>
Deprecated as of 9/2013, replaced by WebFont.Resource.UsageType.
</obsolete>
<summary>
For each webfont, this records (a) if the font was 'styled', i.e. referenced
by a calculated style for a RenderText before the font data was used, and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment