Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 524e9c03947469e6e8e3c5dc9350bb22b79dc6d8..8afa4bc4786d63cf318d18ffcb482b06e96f1cab 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -4679,6 +4679,42 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <summary>Number of tries before successful ping. 99 means giving up.</summary> |
| </histogram> |
| +<histogram name="ColorManagement.JPEGColorProfileStatus" |
|
rkaplow
2015/12/02 21:56:42
this could be made more concise by using the suffi
Justin Novosad
2015/12/02 22:15:43
Done.
|
| + enum="ColorProfileStatus"> |
| + <owner>junov@chromium.org noel@chromium.org</owner> |
|
rkaplow
2015/12/02 21:56:42
these should be seperate lines (i.e. seperate owne
Justin Novosad
2015/12/02 22:15:43
Done.
|
| + <summary> |
| + Success or error status of retrieving, decoding and using the color profile |
| + embedded in JPEG image files. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="ColorManagement.PNGColorProfileStatus" |
| + enum="ColorProfileStatus"> |
| + <owner>junov@chromium.org noel@chromium.org</owner> |
| + <summary> |
| + Success or error status of retrieving, decoding and using the color profile |
| + embedded in PNG image files. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="ColorManagement.ScreenColorProfileStatus" |
| + enum="ColorProfileStatus"> |
| + <owner>junov@chromium.org noel@chromium.org</owner> |
| + <summary> |
| + Success or error status of retrieving, decoding and using the display |
| + device's color profile. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="ColorManagement.WEBPColorProfileStatus" |
| + enum="ColorProfileStatus"> |
| + <owner>junov@chromium.org noel@chromium.org</owner> |
| + <summary> |
| + Success or error status of retrieving, decoding and using the color profile |
| + embedded in WEBP image files. |
| + </summary> |
| +</histogram> |
| + |
| <histogram |
| name="Compositing.Browser.DisplayListRecordingSource.UpdateInvalidatedAreaPerMs" |
| units="pixels/ms"> |
| @@ -56795,6 +56831,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| <int value="30" label="More Than 30"/> |
| </enum> |
| +<enum name="ColorProfileStatus" type="int"> |
| + <int value="0" label="Has no color profile"/> |
| + <int value="1" label="Expected a color profile, but none found (WEBP)"/> |
| + <int value="2" label="Color profile header data is corrupted"/> |
| + <int value="3" label="Unsupported: Non-RGB profile"/> |
| + <int value="4" label="Unsupported: Not an input profile"/> |
| + <int value="5" label="Unsupported: ICC v4 profile"/> |
| + <int value="6" label="Color profile decode failed"/> |
| + <int value="7" label="Color profile has incoherent parameters"/> |
| + <int value="8" label="Color profile successfully applied"/> |
| + <int value="9" label="PNG tagged as sRGB (no embedded profile)"/> |
| +</enum> |
| + |
| <enum name="CombinedHttpResponseAndNetErrorCode" type="int"> |
| <!-- Generated from net/base/net_error_list.h --> |