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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1413593012: Record UMA stats for Blink decoded image orientation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase patch 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 83f6ec74d3370d1bb191b6e737d6446990429147..71a2a41f92cce45ffea1f529a74d7d90ce4bb670 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2914,6 +2914,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Blink.DecodedImageOrientation" enum="DecodedImageOrientation">
Alexei Svitkine (slow) 2015/11/17 22:00:25 Nit: Suggest adding another . in the name: Blink.
+ <owner>rob.buis@samsung.org</owner>
+ <summary>Image orientation inferred during decode.</summary>
+</histogram>
+
<histogram name="Blink.MediaElement.Autoplay" enum="MediaElementAutoPlay">
<owner>oysteine@chromium.org</owner>
<summary>
@@ -56837,6 +56842,18 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="6" label="kImageBMP"/>
</enum>
+<enum name="DecodedImageOrientation" type="int">
+ <int value="0" label="kImageOrientationUnknown"/>
Alexei Svitkine (slow) 2015/11/17 22:00:25 Nit: Make these names human readable, e.g. "Top Le
+ <int value="1" label="kImageOrientationTopLeft"/>
+ <int value="2" label="kImageOrientationTopRight"/>
+ <int value="3" label="kImageOrientationBottomRight"/>
+ <int value="4" label="kImageOrientationBottomLeft"/>
+ <int value="5" label="kImageOrientationLeftTop"/>
+ <int value="6" label="kImageOrientationRightTop"/>
+ <int value="7" label="kImageOrientationRightBottom"/>
+ <int value="8" label="kImageOrientationLeftBottom"/>
+</enum>
+
<enum name="DefaultBrowserAsyncAttemptResult" type="int">
<int value="0" label="Success">No errors encountered.</int>
<int value="1" label="Already default">

Powered by Google App Engine
This is Rietveld 408576698