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

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

Issue 2177933002: Use UMA to track characteristics of dst color spaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactor Created 4 years, 5 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 0cd4d2223e5aeffca412ec429ba14ad2a5749595..3c2d9d11acdcf7f01c311b6e7fec01fe6339804f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3660,6 +3660,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Time spent on 2D canvas toDataURL API call.</summary>
</histogram>
+<histogram name="Blink.ColorSpace.Destination" enum="Gamma">
+ <owner>msarett@chromium.org</owner>
+ <summary>Gamma properties of destination color space.</summary>
+</histogram>
+
<histogram name="Blink.Compositing.UpdateTime" units="microseconds">
<owner>paint-dev@chromium.org</owner>
<summary>
@@ -78184,6 +78189,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="8" label="Overflow"/>
</enum>
+<enum name="Gamma" type="int">
+ <int value="0" label="kLinear_Gamma"/>
+ <int value="1" label="kSRGB_Gamma"/>
+ <int value="2" label="k2Dot2Curve_Gamma"/>
+ <int value="3" label="kNonStandard_Gamma"/>
+ <int value="4" label="kNull_Gamma"/>
+ <int value="5" label="kFail_Gamma"/>
+</enum>
+
<enum name="GATTCharacteristicHash" type="int">
<!-- Hash values can be produced using tool: bluetooth_metrics_hash (Only built via GN, not GYP) -->

Powered by Google App Engine
This is Rietveld 408576698