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

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

Issue 2386783002: Add UMA metrics for ICE regathering reasons. (Closed)
Patch Set: . 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
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 kEnumCounterIceRegatheringReason,
36 kPeerConnectionEnumCounterMax 37 kPeerConnectionEnumCounterMax
37 }; 38 };
38 39
39 // Currently this contains information related to WebRTC network/transport 40 // Currently this contains information related to WebRTC network/transport
40 // information. 41 // information.
41 42
42 // The difference between PeerConnectionEnumCounter and 43 // The difference between PeerConnectionEnumCounter and
43 // PeerConnectionMetricsName is that the "EnumCounter" is only counting the 44 // PeerConnectionMetricsName is that the "EnumCounter" is only counting the
44 // occurrences of events, while "Name" has a value associated with it which is 45 // occurrences of events, while "Name" has a value associated with it which is
45 // used to form a histogram. 46 // used to form a histogram.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 kIceCandidatePairHostPrivateHostPrivate, 104 kIceCandidatePairHostPrivateHostPrivate,
104 kIceCandidatePairHostPrivateHostPublic, 105 kIceCandidatePairHostPrivateHostPublic,
105 kIceCandidatePairHostPublicHostPrivate, 106 kIceCandidatePairHostPublicHostPrivate,
106 kIceCandidatePairHostPublicHostPublic, 107 kIceCandidatePairHostPublicHostPublic,
107 kIceCandidatePairMax 108 kIceCandidatePairMax
108 }; 109 };
109 110
110 } // namespace webrtc 111 } // namespace webrtc
111 112
112 #endif // WEBRTC_API_UMAMETRICS_H_ 113 #endif // WEBRTC_API_UMAMETRICS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698