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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1249273004: Add a histogram for Blink decoded image type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « 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 f866bfbe3f88ba4da8303ea4274ed17bf365ff5e..535aa24b47b0f3559fbbd90155444d2158a08af3 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2601,6 +2601,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="blink.ImageCodec" enum="ImageCodec">
+ <summary>Image codec inferred during decode.</summary>
Noel Gordon 2015/07/28 22:49:24 Since this is for decoded images, could we call it
urvang 2015/07/28 23:24:34 Done.
Noel Gordon 2015/07/29 00:04:57 Ok good. You might need to re-title this CL, and
urvang 2015/07/29 00:23:20 Done.
+</histogram>
+
<histogram name="Blink.MediaElement.Autoplay" enum="MediaElementAutoPlay">
<owner>oysteine@chromium.org</owner>
<summary>
@@ -59395,6 +59399,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</int>
</enum>
+<enum name="ImageCodec" type="int">
+ <int value="0" label="kUnknownImage"/>
Noel Gordon 2015/07/28 22:49:24 kImageUnknown?
urvang 2015/07/28 23:24:34 Done.
+ <int value="1" label="kImageJPEG"/>
+ <int value="2" label="kImagePNG"/>
+ <int value="3" label="kImageGIF"/>
+ <int value="4" label="kImageWebP"/>
+ <int value="5" label="kImageICO"/>
Noel Gordon 2015/07/28 22:49:24 Can blink discriminate between ICO and CUR types?
urvang 2015/07/28 23:24:34 Ah my bad, I had already combined them into kImage
Noel Gordon 2015/07/29 00:04:57 I guess my questions were unclear, since I was ask
urvang 2015/07/29 00:23:20 To be precise: Blink *can* descriminate between IC
+ <int value="6" label="kImageCUR"/>
+ <int value="7" label="kImageBMP"/>
+</enum>
+
<enum name="IMECommitType" type="int">
<obsolete>
Deprecated 03/2015, and replaced by IMECommitType2.
« 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