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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 847223002: Add a histogram for video decoder fallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Report from media internals instead. Created 5 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 | « content/browser/media/media_internals.cc ('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 6a2c26fcc6bed77f1899a56205c5cbe18f40233b..87234a1295827f35eb287223a171228621531669 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12900,6 +12900,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Media.VideoDecoderFallback" enum="BooleanDidFallBack">
+ <owner>watk@chromium.org</owner>
+ <summary>
+ Whether Chrome had to fall back to a secondary video decoder after the
+ primary decoder failed reinitialization.
+ </summary>
+</histogram>
+
<histogram name="Media.VideoPixelFormat" enum="VideoPixelFormat">
<owner>scherkus@chromium.org</owner>
<summary>Pixel format used in HTML5 video. Emitted on video load.</summary>
@@ -42599,6 +42607,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Did evict"/>
</enum>
+<enum name="BooleanDidFallBack" type="int">
+ <int value="0" label="Did not fall back"/>
+ <int value="1" label="Did fall back"/>
+</enum>
+
<enum name="BooleanDistillable" type="int">
<int value="0" label="Not distillable"/>
<int value="1" label="Distillable"/>
« no previous file with comments | « content/browser/media/media_internals.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698