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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2533443002: fallback to null sink in WebAudioSourceProvider::Initialize() + UMA stats for device status (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
« media/blink/webmediaplayer_impl.cc ('K') | « 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 a9ea94c896134d471021f918746648ac90b0dc91..180bf95d93e468482f37900e29d35b49e9771649 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -23553,6 +23553,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">
@@ -23784,6 +23793,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.AudioSinkStatus" 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.AudioThreadStatus" enum="AudioThreadStatus">
<owner>dalecurtis@chromium.org</owner>
<summary>
@@ -95669,6 +95687,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>
« media/blink/webmediaplayer_impl.cc ('K') | « media/blink/webmediaplayer_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698