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

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

Issue 2167363002: Log how often DTLS negotiation failed because of incompatible ciphersuites. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Use enum for handshake error code. Created 4 years, 4 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 | « no previous file | 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 14 matching lines...) Expand all
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
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_
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/webrtcsession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698