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

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

Issue 2289113002: WebFonts: classify memory cache hit case in WebFont.CacheHit metric (Closed)
Patch Set: fix condition check order to classify correctly Created 4 years, 4 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/css/RemoteFontFaceSource.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 a981fdea3c55ccc5a4603ed80783c2d54291df4f..bf39a819c52d78955b3ef95b054df8c26d01a216 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -97215,8 +97215,9 @@ To add a new entry, add it with any value and run test to compute valid value.
<enum name="WebFontCacheHit" type="int">
<int value="0" label="Miss"/>
- <int value="1" label="Hit"/>
+ <int value="1" label="Hit disk cache"/>
<int value="2" label="Served from data URL"/>
+ <int value="3" label="Hit memory cache"/>
</enum>
<enum name="WebFontDiskCacheHit" type="int">
« no previous file with comments | « third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698