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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1647703006: Track positions of dimensions in image files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated GIF dimensions UMA logic Created 4 years, 10 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index b5a898b6df1e8505268736b6a8fad01ac19d7137..54fbf64a32ff0d3582ae35bb87a9119619b58d94 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3091,6 +3091,25 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Blink.Images.SizeOffset">
Alexei Svitkine (slow) 2016/02/01 20:51:11 Please add units="" to these.
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ The number of image file bytes that need to be retrieved in order to decode
+ the image dimensions, using the current, non-optimized implementation. The
+ suffix specifies the image type.
+ </summary>
+</histogram>
+
+<histogram name="Blink.Images.SizeOffsetOptimized">
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ The minimum number of image file bytes that need to be retrieved in order to
+ decode the image dimensions. Reported only when this minimum is less the the
+ number of bytes needed using the current image reader implementation. The
+ suffix specifies the image type.
+ </summary>
+</histogram>
+
<histogram name="Blink.MediaElement.Autoplay" enum="MediaElementAutoPlay">
<owner>oysteine@chromium.org</owner>
<summary>
@@ -83125,6 +83144,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="PLT.BeginToFinish_NormalLoad"/>
</histogram_suffixes>
+<histogram_suffixes name="ImageType">
+ <suffix name="GIF"/>
+ <suffix name="JPEG"/>
+ <affected-histogram name="Blink.Images.SizeOffset"/>
+ <affected-histogram name="Blink.Images.SizeOffsetOptimized"/>
+</histogram_suffixes>
+
<histogram_suffixes name="IMEAutoCorrect" separator=".">
<suffix name="AC0" label="The auto-correct level is 0"/>
<suffix name="AC1" label="The auto-correct level is 1"/>

Powered by Google App Engine
This is Rietveld 408576698