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

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

Issue 15380004: Add two new WebSocket histograms to track adoption of the permessage-deflate extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « no previous file | 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 8791 matching lines...) Expand 10 before | Expand all | Expand 10 after
8802 </summary> 8802 </summary>
8803 </histogram> 8803 </histogram>
8804 8804
8805 <histogram name="WebCore.V8DOMWindowShell.createContext.MainWorld" 8805 <histogram name="WebCore.V8DOMWindowShell.createContext.MainWorld"
8806 units="milliseconds"> 8806 units="milliseconds">
8807 <summary> 8807 <summary>
8808 Duration of time taken to create a V8 Context for the main world. 8808 Duration of time taken to create a V8 Context for the main world.
8809 </summary> 8809 </summary>
8810 </histogram> 8810 </histogram>
8811 8811
8812 <histogram name="WebCore.WebSocket.HandshakeResult"
8813 enum="WebSocketHandshakeResult">
8814 <summary>
8815 Count the number of WebSocket handshake for each result. Use this histogram
8816 as a baseline for investigating feature usage counters.
8817 </summary>
8818 </histogram>
8819
8820 <histogram name="WebCore.WebSocket.PerMessageDeflateContextTakeOverMode"
8821 enum="WebSocketPerMessageDeflateContextTakeOverMode">
8822 <summary>
8823 Count the number of WebSockets that accepted permessage-deflate extension
8824 for each context take over mode.
8825 </summary>
8826 </histogram>
8827
8812 <histogram name="WebCore.XHR.send.ArrayBufferOrView" 8828 <histogram name="WebCore.XHR.send.ArrayBufferOrView"
8813 enum="XMLHttpRequestSendArrayBufferOrView"> 8829 enum="XMLHttpRequestSendArrayBufferOrView">
8814 <summary> 8830 <summary>
8815 Count the number of XHR.send() calls for each argument type to see when we 8831 Count the number of XHR.send() calls for each argument type to see when we
8816 can deprecate the ArrayBuffer type support. 8832 can deprecate the ArrayBuffer type support.
8817 </summary> 8833 </summary>
8818 </histogram> 8834 </histogram>
8819 8835
8820 <histogram name="WebFont.LoadTime.0.Under10KB" units="milliseconds"> 8836 <histogram name="WebFont.LoadTime.0.Under10KB" units="milliseconds">
8821 <summary> 8837 <summary>
(...skipping 4343 matching lines...) Expand 10 before | Expand all | Expand 10 after
13165 <int value="4" label="Set up Wallet"/> 13181 <int value="4" label="Set up Wallet"/>
13166 <int value="5" label="Accept ToS"/> 13182 <int value="5" label="Accept ToS"/>
13167 <int value="6" label="Update expiration date"/> 13183 <int value="6" label="Update expiration date"/>
13168 <int value="7" label="Upgrade min address"/> 13184 <int value="7" label="Upgrade min address"/>
13169 <int value="8" label="Choose another instrument or address"/> 13185 <int value="8" label="Choose another instrument or address"/>
13170 <int value="9" label="Verify CVV"/> 13186 <int value="9" label="Verify CVV"/>
13171 <int value="10" label="Invalid form field"/> 13187 <int value="10" label="Invalid form field"/>
13172 <int value="11" label="Require phone number"/> 13188 <int value="11" label="Require phone number"/>
13173 </enum> 13189 </enum>
13174 13190
13191 <enum name="WebSocketHandshakeResult" type="int">
13192 <int value="0" label="Incomplete"/>
13193 <int value="1" label="Normal"/>
13194 <int value="2" label="Failed"/>
13195 <int value="3" label="Connected"/>
13196 </enum>
13197
13198 <enum name="WebSocketPerMessageDeflateContextTakeOverMode" type="int">
13199 <int value="0" label="DoNotTakeOverContext"/>
13200 <int value="1" label="TakeOverContext"/>
13201 </enum>
13202
13175 <enum name="WiFiReasonCode" type="int"> 13203 <enum name="WiFiReasonCode" type="int">
13176 <int value="0" label="kReasonReserved0"/> 13204 <int value="0" label="kReasonReserved0"/>
13177 <int value="1" label="kReasonCodeUnspecified"/> 13205 <int value="1" label="kReasonCodeUnspecified"/>
13178 <int value="2" label="kReasonCodePreviousAuthenticationInvalid"/> 13206 <int value="2" label="kReasonCodePreviousAuthenticationInvalid"/>
13179 <int value="3" label="kReasonCodeSenderHasLeft"/> 13207 <int value="3" label="kReasonCodeSenderHasLeft"/>
13180 <int value="4" label="kReasonCodeInactivity"/> 13208 <int value="4" label="kReasonCodeInactivity"/>
13181 <int value="5" label="kReasonCodeTooManySTAs"/> 13209 <int value="5" label="kReasonCodeTooManySTAs"/>
13182 <int value="6" label="kReasonCodeNonAuthenticated"/> 13210 <int value="6" label="kReasonCodeNonAuthenticated"/>
13183 <int value="7" label="kReasonCodeNonAssociated"/> 13211 <int value="7" label="kReasonCodeNonAssociated"/>
13184 <int value="8" label="kReasonCodeDisassociatedHasLeft"/> 13212 <int value="8" label="kReasonCodeDisassociatedHasLeft"/>
(...skipping 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after
14675 <fieldtrial name="SSLResumption"> 14703 <fieldtrial name="SSLResumption">
14676 <group name="Resume_Handshake" label="Session Resumption"/> 14704 <group name="Resume_Handshake" label="Session Resumption"/>
14677 <group name="Full_Handshake" label="Full"/> 14705 <group name="Full_Handshake" label="Full"/>
14678 <affected-histogram name="Net.SSL_Connection_Latency"/> 14706 <affected-histogram name="Net.SSL_Connection_Latency"/>
14679 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 14707 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
14680 </fieldtrial> 14708 </fieldtrial>
14681 14709
14682 </fieldtrials> 14710 </fieldtrials>
14683 14711
14684 </histogram-configuration> 14712 </histogram-configuration>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698