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 15 matching lines...) Expand all Loading... |
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 Loading... |
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_ |
OLD | NEW |