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

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

Issue 17444005: Remove MediaStreamDeviceThread in favor of using AudioThread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix one more test. Created 7 years, 6 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 | « content/browser/renderer_host/media/video_capture_manager.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 3528 matching lines...) Expand 10 before | Expand all | Expand 10 after
3539 </histogram> 3539 </histogram>
3540 3540
3541 <histogram name="Media.AudioCodec" enum="AudioCodec"> 3541 <histogram name="Media.AudioCodec" enum="AudioCodec">
3542 <summary>Audio codec used in HTML5 media.</summary> 3542 <summary>Audio codec used in HTML5 media.</summary>
3543 </histogram> 3543 </histogram>
3544 3544
3545 <histogram name="Media.AudioInputController" units="ms"> 3545 <histogram name="Media.AudioInputController" units="ms">
3546 <summary>Measures the time taken for AudioInputController::</summary> 3546 <summary>Measures the time taken for AudioInputController::</summary>
3547 </histogram> 3547 </histogram>
3548 3548
3549 <histogram name="Media.AudioInputDeviceManager" units="ms">
3550 <summary>Measures the time taken for AudioInputDeviceManager::</summary>
3551 </histogram>
3552
3549 <histogram name="Media.AudioOutputController" units="ms"> 3553 <histogram name="Media.AudioOutputController" units="ms">
3550 <summary>Measures the time taken for AudioOutputController::</summary> 3554 <summary>Measures the time taken for AudioOutputController::</summary>
3551 </histogram> 3555 </histogram>
3552 3556
3553 <histogram name="Media.AudioOutputControllerDataNotReady" units="ms"> 3557 <histogram name="Media.AudioOutputControllerDataNotReady" units="ms">
3554 <summary> 3558 <summary>
3555 Time spent waiting in AudioOutputController::WaitTillDataReady() if the data 3559 Time spent waiting in AudioOutputController::WaitTillDataReady() if the data
3556 was not initially available. 3560 was not initially available.
3557 </summary> 3561 </summary>
3558 </histogram> 3562 </histogram>
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
3971 URL scheme used with HTML5 media. (each URL provides one sample) 3975 URL scheme used with HTML5 media. (each URL provides one sample)
3972 </summary> 3976 </summary>
3973 </histogram> 3977 </histogram>
3974 3978
3975 <histogram name="Media.VAVDAH264.DecoderFailure" enum="VAVDAH264DecoderFailure"> 3979 <histogram name="Media.VAVDAH264.DecoderFailure" enum="VAVDAH264DecoderFailure">
3976 <summary> 3980 <summary>
3977 Error codes reported by video decode using VA-API hardware video decoder. 3981 Error codes reported by video decode using VA-API hardware video decoder.
3978 </summary> 3982 </summary>
3979 </histogram> 3983 </histogram>
3980 3984
3985 <histogram name="Media.VideoCaptureManager" units="ms">
3986 <summary>Measures the time taken for VideoCaptureManager::</summary>
3987 </histogram>
3988
3981 <histogram name="Media.VideoCodec" enum="VideoCodec"> 3989 <histogram name="Media.VideoCodec" enum="VideoCodec">
3982 <summary>Video codec used in HTML5 media.</summary> 3990 <summary>Video codec used in HTML5 media.</summary>
3983 </histogram> 3991 </histogram>
3984 3992
3985 <histogram name="Media.VideoCodecProfile" enum="VideoCodecProfile"> 3993 <histogram name="Media.VideoCodecProfile" enum="VideoCodecProfile">
3986 <summary>Video codec profile used in HTML5 media.</summary> 3994 <summary>Video codec profile used in HTML5 media.</summary>
3987 </histogram> 3995 </histogram>
3988 3996
3989 <histogram name="Media.VideoCodedAspectRatio"> 3997 <histogram name="Media.VideoCodedAspectRatio">
3990 <summary>Coded aspect ratio of HTML5 video.</summary> 3998 <summary>Coded aspect ratio of HTML5 video.</summary>
(...skipping 14720 matching lines...) Expand 10 before | Expand all | Expand 10 after
18711 <affected-histogram name="LevelDBEnv.TimeTo"/> 18719 <affected-histogram name="LevelDBEnv.TimeTo"/>
18712 </fieldtrial> 18720 </fieldtrial>
18713 18721
18714 <fieldtrial name="MediaAudioInputControllerTime" separator="."> 18722 <fieldtrial name="MediaAudioInputControllerTime" separator=".">
18715 <group name="CloseTime" label="Measures the time taken for DoClose()."/> 18723 <group name="CloseTime" label="Measures the time taken for DoClose()."/>
18716 <group name="CreateTime" label="Measures the time taken for DoCreate()."/> 18724 <group name="CreateTime" label="Measures the time taken for DoCreate()."/>
18717 <group name="RecordTime" label="Measures the time taken for DoRecord()."/> 18725 <group name="RecordTime" label="Measures the time taken for DoRecord()."/>
18718 <affected-histogram name="Media.AudioInputController"/> 18726 <affected-histogram name="Media.AudioInputController"/>
18719 </fieldtrial> 18727 </fieldtrial>
18720 18728
18729 <fieldtrial name="MediaAudioInputDeviceManagerTime" separator=".">
18730 <group name="OpenOnDeviceThreadTime"
18731 label="Measures the time taken for OpenOnDeviceThread()."/>
18732 <group name="EnumerateOnDeviceThreadTime"
18733 label="Measures the time taken for EnumerateOnDeviceThread()."/>
18734 <affected-histogram name="Media.AudioInputDeviceManager"/>
18735 </fieldtrial>
18736
18721 <fieldtrial name="MediaAudioOutputControllerTime" separator="."> 18737 <fieldtrial name="MediaAudioOutputControllerTime" separator=".">
18722 <group name="CloseTime" label="Measures the time taken for DoClose()."/> 18738 <group name="CloseTime" label="Measures the time taken for DoClose()."/>
18723 <group name="CreateTime" label="Measures the time taken for DoCreate()."/> 18739 <group name="CreateTime" label="Measures the time taken for DoCreate()."/>
18724 <group name="DeviceChangeTime" 18740 <group name="DeviceChangeTime"
18725 label="Measures the time taken for OnDeviceChange()."/> 18741 label="Measures the time taken for OnDeviceChange()."/>
18726 <group name="PauseTime" label="Measures the time taken for DoPause()."/> 18742 <group name="PauseTime" label="Measures the time taken for DoPause()."/>
18727 <group name="PlayTime" 18743 <group name="PlayTime"
18728 label="Measures the time taken for DoPlay(). Technically only the 18744 label="Measures the time taken for DoPlay(). Technically only the
18729 worker method AudioOutputController::PollAndStartIfDataReady()."/> 18745 worker method AudioOutputController::PollAndStartIfDataReady()."/>
18730 <affected-histogram name="Media.AudioOutputController"/> 18746 <affected-histogram name="Media.AudioOutputController"/>
18731 </fieldtrial> 18747 </fieldtrial>
18732 18748
18749 <fieldtrial name="MediaVideoCaptureManagerTime" separator=".">
18750 <group name="OnEnumerateDevicesTime"
18751 label="Measures the time taken for OnEnumerateDevices()."/>
18752 <group name="OnOpenTime" label="Measures the time taken for OnOpen()."/>
18753 <group name="OnCloseTime" label="Measures the time taken for OnClose()."/>
18754 <group name="OnStartTime" label="Measures the time taken for OnStart()."/>
18755 <group name="OnStopTime" label="Measures the time taken for OnStop()."/>
18756 <affected-histogram name="Media.VideoCaptureManager"/>
18757 </fieldtrial>
18758
18733 <fieldtrial name="NetConnectivity" separator="."> 18759 <fieldtrial name="NetConnectivity" separator=".">
18734 <group name="53.100B" label="100 bytes of data on port 53."/> 18760 <group name="53.100B" label="100 bytes of data on port 53."/>
18735 <group name="53.100B.NoProxy" 18761 <group name="53.100B.NoProxy"
18736 label="100 bytes of data on port 53 with no proxy."/> 18762 label="100 bytes of data on port 53 with no proxy."/>
18737 <group name="53.1K" label="1K bytes of data on port 53."/> 18763 <group name="53.1K" label="1K bytes of data on port 53."/>
18738 <group name="53.1K.NoProxy" 18764 <group name="53.1K.NoProxy"
18739 label="1K bytes of data on port 53 with no proxy."/> 18765 label="1K bytes of data on port 53 with no proxy."/>
18740 <group name="53.100B.RTT" label="100 bytes of data on port 53 successfully."/> 18766 <group name="53.100B.RTT" label="100 bytes of data on port 53 successfully."/>
18741 <group name="53.100B.RTT.NoProxy" 18767 <group name="53.100B.RTT.NoProxy"
18742 label="100 bytes of data on port 53 successfully with no proxy."/> 18768 label="100 bytes of data on port 53 successfully with no proxy."/>
(...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after
19824 <group name="Disabled" label="Neither extra webstore link is visible"/> 19850 <group name="Disabled" label="Neither extra webstore link is visible"/>
19825 <group name="FooterLink" label="Link in bottom right of footer"/> 19851 <group name="FooterLink" label="Link in bottom right of footer"/>
19826 <group name="PlusIcon" label="Plus icon in apps page"/> 19852 <group name="PlusIcon" label="Plus icon in apps page"/>
19827 <affected-histogram name="Extensions.AppLaunch"/> 19853 <affected-histogram name="Extensions.AppLaunch"/>
19828 <affected-histogram name="NewTabPage.DefaultPageType"/> 19854 <affected-histogram name="NewTabPage.DefaultPageType"/>
19829 </fieldtrial> 19855 </fieldtrial>
19830 19856
19831 </fieldtrials> 19857 </fieldtrials>
19832 19858
19833 </histogram-configuration> 19859 </histogram-configuration>
OLDNEW
« no previous file with comments | « content/browser/renderer_host/media/video_capture_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698