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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1839833002: Add histogram entry for GpuVideoDecoder errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « media/video/video_decode_accelerator.h ('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 51501ce0b3d0138ae8885287d1040adc518df992..684a69e79ec480afba86a30368f40b9a68a9a2cc 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -20291,6 +20291,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.GpuVideoDecoderError" enum="VideoDecodeAcceleratorError">
+ <owner>sandersd@chromium.org</owner>
+ <summary>Counts of video decode errors reported to GpuVideoDecoder.</summary>
+</histogram>
+
<histogram name="Media.GpuVideoDecoderInitializeStatus" enum="PipelineStatus">
<owner>posciak@chromium.org</owner>
<summary>Results of attempts to GpuVideoDecoder::Initialize().</summary>
@@ -20561,7 +20566,8 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
-<histogram name="Media.PepperVideoDecoderError" enum="PepperVideoDecodeError">
+<histogram name="Media.PepperVideoDecoderError"
+ enum="VideoDecodeAcceleratorError">
<owner>ihf@chromium.org</owner>
<owner>posciak@chromium.org</owner>
<summary>Counts of video decode errors reported to plugin.</summary>
@@ -20616,7 +20622,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
-<histogram name="Media.RTCVideoDecoderError" enum="PepperVideoDecodeError">
+<histogram name="Media.RTCVideoDecoderError" enum="VideoDecodeAcceleratorError">
<owner>posciak@chromium.org</owner>
<summary>Counts of video decode errors reported to RTCVideoDecoder.</summary>
</histogram>
@@ -77743,21 +77749,6 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2126196629" label="PPB_UDPSocket_Private;0.4"/>
</enum>
-<enum name="PepperVideoDecodeError" type="int">
- <int value="1" label="Illegal state">
- An operation was attempted during an incompatible decoder state.
- </int>
- <int value="2" label="Invalid argument">
- Invalid argument was passed to an API method.
- </int>
- <int value="3" label="Unreadable input">Encoded input is unreadable.</int>
- <int value="4" label="Platform failure">
- A failure occurred at the browser layer or lower. Examples of such failures
- include GPU hardware failures, GPU driver failures, GPU library failures,
- browser programming errors, and so on.
- </int>
-</enum>
-
<enum name="PermissionAction" type="int">
<int value="0" label="GRANTED"/>
<int value="1" label="DENIED"/>
@@ -84368,6 +84359,21 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="12" label="VP9"/>
</enum>
+<enum name="VideoDecodeAcceleratorError" type="int">
+ <int value="1" label="Illegal state">
+ An operation was attempted during an incompatible decoder state.
+ </int>
+ <int value="2" label="Invalid argument">
+ Invalid argument was passed to an API method.
+ </int>
+ <int value="3" label="Unreadable input">Encoded input is unreadable.</int>
+ <int value="4" label="Platform failure">
+ A failure occurred at the browser layer or lower. Examples of such failures
+ include GPU hardware failures, GPU driver failures, GPU library failures,
+ browser programming errors, and so on.
+ </int>
+</enum>
+
<enum name="VideoFormat" type="int">
<obsolete>
Deprecated as of 05/2015. Substituted by VideoFramePixelFormat.
« no previous file with comments | « media/video/video_decode_accelerator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698