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

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

Issue 1413593012: Record UMA stats for Blink decoded image orientation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix histograms.xml Created 5 years, 1 month 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/platform/graphics/ImageOrientation.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 0d99c05574f6baf86fa25bf764d0ba789e17fc9a..9d6c163acca5807d32a8c319d7c52d73e7822f0c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2911,6 +2911,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Blink.DecodedImage.Orientation" enum="DecodedImageOrientation">
+ <owner>rob.buis@samsung.org</owner>
+ <summary>Image orientation inferred during decode.</summary>
+</histogram>
+
<histogram name="Blink.DecodedImageType" enum="DecodedImageType">
<owner>urvang@chromium.org</owner>
<summary>Image codec inferred during decode.</summary>
@@ -56919,6 +56924,18 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="8" label="Data use tracking ended dialog opted out"/>
</enum>
+<enum name="DecodedImageOrientation" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Top Left"/>
+ <int value="2" label="Top Right"/>
+ <int value="3" label="Bottom Right"/>
+ <int value="4" label="Bottom Left"/>
+ <int value="5" label="Left Top"/>
+ <int value="6" label="Right Top"/>
+ <int value="7" label="Right Bottom"/>
+ <int value="8" label="Left Bottom"/>
+</enum>
+
<enum name="DecodedImageType" type="int">
<int value="0" label="kImageUnknown"/>
<int value="1" label="kImageJPEG"/>
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/ImageOrientation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698