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

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

Issue 2569883003: Fallback to null sink moved from WebMediaPlayer to WebAudioSourceProvider::Initialize(), so that we… (Closed)
Patch Set: Created 4 years 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/blink/webmediaplayer_impl.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 18531fde552d0c2990390739b7c3f674d3e9c12d..0cac39849dbab09a902c74bfe409f6006b50810c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -23653,6 +23653,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.Audio.Render.OutputDeviceStatus"
+ enum="OutputDeviceStatus">
+ <owner>olka@chromium.org</owner>
+ <owner>dalecurtis@chromium.org</owner>
+ <summary>
+ Device status received in response to device authorization request.
+ </summary>
+</histogram>
+
<histogram
name="Media.Audio.Render.SinkCache.GetOutputDeviceInfoCacheUtilization"
enum="GetOutputDeviceInfoCacheHit">
@@ -25482,6 +25491,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.WebAudioSourceProvider.SinkStatus"
+ enum="OutputDeviceStatus">
+ <owner>olka@chromium.org</owner>
+ <owner>dalecurtis@chromium.org</owner>
+ <summary>
+ Status of audio sink provided to WebMediaPlayer. If not OK, null sink will
+ be used for audio output instead.
+ </summary>
+</histogram>
+
<histogram name="Media.WindowsCoreAudioInput" enum="BooleanSuccess">
<owner>henrika@chromium.org</owner>
<summary>
@@ -95759,6 +95778,14 @@ value.
<int value="10" label="Hide for now"/>
</enum>
+<enum name="OutputDeviceStatus" type="int">
+ <int value="0" label="Ok"/>
+ <int value="1" label="Not found"/>
+ <int value="2" label="Not authorized"/>
+ <int value="3" label="Authorization timed out"/>
+ <int value="4" label="Internal error"/>
+</enum>
+
<enum name="OverscrollMode" type="int">
<summary>Direction of the overscroll gesture.</summary>
<int value="1" label="North">Scrolled from bottom towards top</int>
« no previous file with comments | « media/blink/webmediaplayer_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698