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

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

Issue 1413903010: Add a histogram for Blink decoded image orientation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « 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 359e403d943161dbb1dabc1b116c7b324fa6cb15..ea3bd249f711990c1ca68457dcf2b97e7dc2f19c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2848,6 +2848,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Image codec inferred during decode.</summary>
</histogram>
+<histogram name="Blink.DecodedImageOrientation" enum="DecodedImageOrientation">
+ <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>
@@ -56287,6 +56292,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"/>
+ <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">
« 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