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

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

Issue 1750403004: Adds Media.Audio.InputStartWasDeferredAudioWorkedMac UMA stat (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 10 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/audio/mac/audio_low_latency_input_mac.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 620167acfaab95644c0c60a18971420f48ceb89e..87051080d7ba4c8c09251e4b3b28eac4f62c4ecf 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -19079,6 +19079,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.Audio.InputBufferSizeWasChangedAudioWorkedMac"
+ enum="BooleanChanged">
+ <owner>henrika@chromium.org</owner>
+ <summary>
+ Indicates if the size of the audio unit's IO buffer was changed when
+ starting an input audio stream. Sampled each time an AUAudioInputStream
+ instance is closed, i.e., we know that input audio has started as it should
+ when this value is stored. Can be compared with
+ Media.Audio.InputBufferSizeWasChangedMac which is only added when input
+ audio fails to start.
+ </summary>
+</histogram>
+
<histogram name="Media.Audio.InputBufferSizeWasChangedMac"
enum="BooleanSuccess">
<owner>henrika@chromium.org</owner>
@@ -19118,7 +19131,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
-<histogram name="Media.Audio.InputStartWasDeferredMac" enum="BooleanSuccess">
+<histogram name="Media.Audio.InputStartWasDeferredAudioWorkedMac"
+ enum="BooleanDeferred">
+ <owner>henrika@chromium.org</owner>
+ <summary>
+ Indicates if audio capturing started with a small delay or not. Sampled each
+ time an AUAudioInputStream instance is closed, i.e., we know that input
+ audio has started as it should when this value is stored. Can be compared
+ with Media.Audio.InputStartWasDeferredMac which is only added when input
+ audio fails to start.
+ </summary>
+</histogram>
+
+<histogram name="Media.Audio.InputStartWasDeferredMac" enum="BooleanDeferred">
<owner>henrika@chromium.org</owner>
<summary>
Indicates if audio capturing started with a small delay or not. Only sampled
@@ -59983,6 +60008,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="1" label="Data Reduction Proxy"/>
</enum>
+<enum name="BooleanDeferred" type="int">
+ <int value="0" label="Not deferred"/>
+ <int value="1" label="Deferred"/>
+</enum>
+
<enum name="BooleanDelete" type="int">
<int value="0" label="Ignored"/>
<int value="1" label="Deleted"/>
« no previous file with comments | « media/audio/mac/audio_low_latency_input_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698