OLD | NEW |
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 14 matching lines...) Expand all Loading... |
25 // to the TURN server in the case of TURN candidates. | 25 // to the TURN server in the case of TURN candidates. |
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 kPeerConnectionEnumCounterMax | 36 kPeerConnectionEnumCounterMax |
36 }; | 37 }; |
37 | 38 |
38 // Currently this contains information related to WebRTC network/transport | 39 // Currently this contains information related to WebRTC network/transport |
39 // information. | 40 // information. |
40 | 41 |
41 // The difference between PeerConnectionEnumCounter and | 42 // The difference between PeerConnectionEnumCounter and |
42 // PeerConnectionMetricsName is that the "EnumCounter" is only counting the | 43 // PeerConnectionMetricsName is that the "EnumCounter" is only counting the |
43 // occurrences of events, while "Name" has a value associated with it which is | 44 // occurrences of events, while "Name" has a value associated with it which is |
44 // used to form a histogram. | 45 // used to form a histogram. |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 kIceCandidatePairHostPrivateHostPrivate, | 103 kIceCandidatePairHostPrivateHostPrivate, |
103 kIceCandidatePairHostPrivateHostPublic, | 104 kIceCandidatePairHostPrivateHostPublic, |
104 kIceCandidatePairHostPublicHostPrivate, | 105 kIceCandidatePairHostPublicHostPrivate, |
105 kIceCandidatePairHostPublicHostPublic, | 106 kIceCandidatePairHostPublicHostPublic, |
106 kIceCandidatePairMax | 107 kIceCandidatePairMax |
107 }; | 108 }; |
108 | 109 |
109 } // namespace webrtc | 110 } // namespace webrtc |
110 | 111 |
111 #endif // WEBRTC_API_UMAMETRICS_H_ | 112 #endif // WEBRTC_API_UMAMETRICS_H_ |
OLD | NEW |