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

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

Issue 2629723006: Add histograms for ICC profile parsing (Closed)
Patch Set: Incorporate review feedback Created 3 years, 11 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 | « third_party/WebKit/Source/platform/graphics/ColorBehavior.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 00516232f1f909153184acf573263a89bae8a4dc..b0a2a01396d19a94315499fa2f9882826a5f8709 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -4275,6 +4275,24 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Gamma properties of destination color space.</summary>
</histogram>
+<histogram name="Blink.ColorSpace.Destination.Matrix"
+ enum="ColorSpaceMatrixResult">
+ <owner>ccameron@chromium.org</owner>
+ <summary>
+ Whether or not to-XYZD50 matrix was extracted from the output color space
+ ICC profile.
+ </summary>
+</histogram>
+
+<histogram name="Blink.ColorSpace.Destination.Numerical"
+ enum="ColorSpaceNumericalResult">
+ <owner>ccameron@chromium.org</owner>
+ <summary>
+ Whether or not the output color space ICC profile has a numerical transfer
+ function.
+ </summary>
+</histogram>
+
<histogram name="Blink.ColorSpace.Source" enum="Gamma">
<owner>ccameron@chromium.org</owner>
<summary>Gamma properties of image color space.</summary>
@@ -80529,6 +80547,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="30" label="More Than 30"/>
</enum>
+<enum name="ColorSpaceMatrixResult" type="int">
+ <int value="0" label="Failed to extract toXYZD50 matrix."/>
+ <int value="1" label="Successfully extracted toXYZD50 matrix."/>
+</enum>
+
+<enum name="ColorSpaceNumericalResult" type="int">
+ <int value="0" label="Failed to extract analytical transfer function."/>
+ <int value="1" label="Successfully extracted analytical transfer function."/>
+</enum>
+
<enum name="CombinedHttpResponseAndNetErrorCode" type="int">
<!-- Generated from net/base/net_error_list.h -->
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/ColorBehavior.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698