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

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: nits 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
« no previous file with comments | « media/filters/audio_renderer_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3345 matching lines...) Expand 10 before | Expand all | Expand 10 after
4135 4139
4136 <!-- Enum types --> 4140 <!-- Enum types -->
4137 4141
4138 <enums> 4142 <enums>
4139 4143
4140 <enum name="Abandoned" type="int"> 4144 <enum name="Abandoned" type="int">
4141 <int value="0" label="Finished"/> 4145 <int value="0" label="Finished"/>
4142 <int value="1" label="Abandoned"/> 4146 <int value="1" label="Abandoned"/>
4143 </enum> 4147 </enum>
4144 4148
4149 <enum name="AudioRendererEvents" type="int">
4150 <int value="0" label="Initialized"/>
4151 <int value="1" label="Runtime error"/>
4152 </enum>
4153
4145 <enum name="AutocheckoutBubble" type="int"> 4154 <enum name="AutocheckoutBubble" type="int">
4146 <int value="0" label="Created"/> 4155 <int value="0" label="Created"/>
4147 <int value="1" label="Accepted"/> 4156 <int value="1" label="Accepted"/>
4148 <int value="2" label="Dismissed"/> 4157 <int value="2" label="Dismissed"/>
4149 <int value="3" label="Ignored"/> 4158 <int value="3" label="Ignored"/>
4150 <int value="4" label="Could be displayed"/> 4159 <int value="4" label="Could be displayed"/>
4151 </enum> 4160 </enum>
4152 4161
4153 <enum name="AutocheckoutBuyFlow" type="int"> 4162 <enum name="AutocheckoutBuyFlow" type="int">
4154 <int value="0" label="Started"/> 4163 <int value="0" label="Started"/>
(...skipping 3766 matching lines...) Expand 10 before | Expand all | Expand 10 after
7921 <fieldtrial name="SSLResumption"> 7930 <fieldtrial name="SSLResumption">
7922 <group name="Resume_Handshake" label="Session Resumption"/> 7931 <group name="Resume_Handshake" label="Session Resumption"/>
7923 <group name="Full_Handshake" label="Full"/> 7932 <group name="Full_Handshake" label="Full"/>
7924 <affected-histogram name="Net.SSL_Connection_Latency"/> 7933 <affected-histogram name="Net.SSL_Connection_Latency"/>
7925 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 7934 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
7926 </fieldtrial> 7935 </fieldtrial>
7927 7936
7928 </fieldtrials> 7937 </fieldtrials>
7929 7938
7930 </histogram-configuration> 7939 </histogram-configuration>
OLDNEW
« no previous file with comments | « media/filters/audio_renderer_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698