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

Side by Side Diff: webrtc/api/umametrics.h

Issue 2386783002: Add UMA metrics for ICE regathering reasons. (Closed)
Patch Set: Add const to the pooled_sessions method. Created 4 years, 2 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
« no previous file with comments | « webrtc/api/peerconnection.cc ('k') | webrtc/api/webrtcsession.h » ('j') | 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 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 15 matching lines...) Expand all
26 kEnumCounterIceCandidatePairTypeUdp, 26 kEnumCounterIceCandidatePairTypeUdp,
27 kEnumCounterIceCandidatePairTypeTcp, 27 kEnumCounterIceCandidatePairTypeTcp,
28 28
29 kEnumCounterAudioSrtpCipher, 29 kEnumCounterAudioSrtpCipher,
30 kEnumCounterAudioSslCipher, 30 kEnumCounterAudioSslCipher,
31 kEnumCounterVideoSrtpCipher, 31 kEnumCounterVideoSrtpCipher,
32 kEnumCounterVideoSslCipher, 32 kEnumCounterVideoSslCipher,
33 kEnumCounterDataSrtpCipher, 33 kEnumCounterDataSrtpCipher,
34 kEnumCounterDataSslCipher, 34 kEnumCounterDataSslCipher,
35 kEnumCounterDtlsHandshakeError, 35 kEnumCounterDtlsHandshakeError,
36 kEnumCounterIceRegathering,
37 kEnumCounterIceRestart,
36 kPeerConnectionEnumCounterMax 38 kPeerConnectionEnumCounterMax
37 }; 39 };
38 40
39 // Currently this contains information related to WebRTC network/transport 41 // Currently this contains information related to WebRTC network/transport
40 // information. 42 // information.
41 43
42 // The difference between PeerConnectionEnumCounter and 44 // The difference between PeerConnectionEnumCounter and
43 // PeerConnectionMetricsName is that the "EnumCounter" is only counting the 45 // PeerConnectionMetricsName is that the "EnumCounter" is only counting the
44 // occurrences of events, while "Name" has a value associated with it which is 46 // occurrences of events, while "Name" has a value associated with it which is
45 // used to form a histogram. 47 // used to form a histogram.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 kIceCandidatePairHostPrivateHostPrivate, 105 kIceCandidatePairHostPrivateHostPrivate,
104 kIceCandidatePairHostPrivateHostPublic, 106 kIceCandidatePairHostPrivateHostPublic,
105 kIceCandidatePairHostPublicHostPrivate, 107 kIceCandidatePairHostPublicHostPrivate,
106 kIceCandidatePairHostPublicHostPublic, 108 kIceCandidatePairHostPublicHostPublic,
107 kIceCandidatePairMax 109 kIceCandidatePairMax
108 }; 110 };
109 111
110 } // namespace webrtc 112 } // namespace webrtc
111 113
112 #endif // WEBRTC_API_UMAMETRICS_H_ 114 #endif // WEBRTC_API_UMAMETRICS_H_
OLDNEW
« no previous file with comments | « webrtc/api/peerconnection.cc ('k') | webrtc/api/webrtcsession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698