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

Side by Side Diff: tools/metrics/histograms/histograms.xml

Issue 14054019: Add Media.AudioRendererEvents histogram to measure how often OnRenderError() is called. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome histograms along 8 This file is used to generate a comprehensive list of Chrome histograms along
9 with a detailed description for each histogram. 9 with a detailed description for each histogram.
10 10
(...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 <summary> 770 <summary>
771 Time Non-IDB LevelDBEnv slept before successfully completing this operation. 771 Time Non-IDB LevelDBEnv slept before successfully completing this operation.
772 0 means success on the first try. 772 0 means success on the first try.
773 </summary> 773 </summary>
774 </histogram> 774 </histogram>
775 775
776 <histogram name="Linux.GlibcVersion" enum="LinuxGlibcVersion"> 776 <histogram name="Linux.GlibcVersion" enum="LinuxGlibcVersion">
777 <summary>The version of glibc used. (Linux only)</summary> 777 <summary>The version of glibc used. (Linux only)</summary>
778 </histogram> 778 </histogram>
779 779
780 <histogram name="Media.AudioRendererEvents" enum="AudioRendererEvents">
781 <summary>Captures statistics for various AudioRendererImpl events.</summary>
782 </histogram>
783
780 <histogram name="Media.DetectedAudioCodec" enum="FFmpegCodecs"> 784 <histogram name="Media.DetectedAudioCodec" enum="FFmpegCodecs">
781 <summary>Audio codec used in HTML5 media.</summary> 785 <summary>Audio codec used in HTML5 media.</summary>
782 </histogram> 786 </histogram>
783 787
784 <histogram name="Media.DetectedVideoCodec" enum="FFmpegCodecs"> 788 <histogram name="Media.DetectedVideoCodec" enum="FFmpegCodecs">
785 <summary>Video codec used in HTML5 media.</summary> 789 <summary>Video codec used in HTML5 media.</summary>
786 </histogram> 790 </histogram>
787 791
788 <histogram name="Media.VAVDAH264.DecoderFailure" enum="VAVDAH264DecoderFailure"> 792 <histogram name="Media.VAVDAH264.DecoderFailure" enum="VAVDAH264DecoderFailure">
789 <summary> 793 <summary>
(...skipping 3338 matching lines...) Expand 10 before | Expand all | Expand 10 after
4128 4132
4129 <!-- Enum types --> 4133 <!-- Enum types -->
4130 4134
4131 <enums> 4135 <enums>
4132 4136
4133 <enum name="Abandoned" type="int"> 4137 <enum name="Abandoned" type="int">
4134 <int value="0" label="Finished"/> 4138 <int value="0" label="Finished"/>
4135 <int value="1" label="Abandoned"/> 4139 <int value="1" label="Abandoned"/>
4136 </enum> 4140 </enum>
4137 4141
4142 <enum name="AudioRendererEvents" type="int">
4143 <int value="0" label="Initialized"/>
4144 <int value="1" label="Runtime error"/>
4145 </enum>
4146
4138 <enum name="AutocheckoutBubble" type="int"> 4147 <enum name="AutocheckoutBubble" type="int">
4139 <int value="0" label="Created"/> 4148 <int value="0" label="Created"/>
4140 <int value="1" label="Accepted"/> 4149 <int value="1" label="Accepted"/>
4141 <int value="2" label="Dismissed"/> 4150 <int value="2" label="Dismissed"/>
4142 <int value="3" label="Ignored"/> 4151 <int value="3" label="Ignored"/>
4143 <int value="4" label="Could be displayed"/> 4152 <int value="4" label="Could be displayed"/>
4144 </enum> 4153 </enum>
4145 4154
4146 <enum name="AutocheckoutBuyFlow" type="int"> 4155 <enum name="AutocheckoutBuyFlow" type="int">
4147 <int value="0" label="Started"/> 4156 <int value="0" label="Started"/>
(...skipping 3753 matching lines...) Expand 10 before | Expand all | Expand 10 after
7901 <fieldtrial name="SSLResumption"> 7910 <fieldtrial name="SSLResumption">
7902 <group name="Resume_Handshake" label="Session Resumption"/> 7911 <group name="Resume_Handshake" label="Session Resumption"/>
7903 <group name="Full_Handshake" label="Full"/> 7912 <group name="Full_Handshake" label="Full"/>
7904 <affected-histogram name="Net.SSL_Connection_Latency"/> 7913 <affected-histogram name="Net.SSL_Connection_Latency"/>
7905 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 7914 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
7906 </fieldtrial> 7915 </fieldtrial>
7907 7916
7908 </fieldtrials> 7917 </fieldtrials>
7909 7918
7910 </histogram-configuration> 7919 </histogram-configuration>
OLDNEW
« media/filters/audio_renderer_impl.cc ('K') | « media/filters/audio_renderer_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698