OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 RTCStatsMember<uint64_t> requests_received; | 145 RTCStatsMember<uint64_t> requests_received; |
146 RTCStatsMember<uint64_t> requests_sent; | 146 RTCStatsMember<uint64_t> requests_sent; |
147 RTCStatsMember<uint64_t> responses_received; | 147 RTCStatsMember<uint64_t> responses_received; |
148 RTCStatsMember<uint64_t> responses_sent; | 148 RTCStatsMember<uint64_t> responses_sent; |
149 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 149 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
150 RTCStatsMember<uint64_t> retransmissions_received; | 150 RTCStatsMember<uint64_t> retransmissions_received; |
151 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 151 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
152 RTCStatsMember<uint64_t> retransmissions_sent; | 152 RTCStatsMember<uint64_t> retransmissions_sent; |
153 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 153 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
154 RTCStatsMember<uint64_t> consent_requests_received; | 154 RTCStatsMember<uint64_t> consent_requests_received; |
155 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | |
156 RTCStatsMember<uint64_t> consent_requests_sent; | 155 RTCStatsMember<uint64_t> consent_requests_sent; |
157 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 156 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
158 RTCStatsMember<uint64_t> consent_responses_received; | 157 RTCStatsMember<uint64_t> consent_responses_received; |
159 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 158 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
160 RTCStatsMember<uint64_t> consent_responses_sent; | 159 RTCStatsMember<uint64_t> consent_responses_sent; |
161 }; | 160 }; |
162 | 161 |
163 // https://w3c.github.io/webrtc-stats/#icecandidate-dict* | 162 // https://w3c.github.io/webrtc-stats/#icecandidate-dict* |
164 // TODO(hbos): |RTCStatsCollector| only collects candidates that are part of | 163 // TODO(hbos): |RTCStatsCollector| only collects candidates that are part of |
165 // ice candidate pairs, but there could be candidates not paired with anything. | 164 // ice candidate pairs, but there could be candidates not paired with anything. |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 RTCStatsMember<std::string> rtcp_transport_stats_id; | 388 RTCStatsMember<std::string> rtcp_transport_stats_id; |
390 RTCStatsMember<bool> active_connection; | 389 RTCStatsMember<bool> active_connection; |
391 RTCStatsMember<std::string> selected_candidate_pair_id; | 390 RTCStatsMember<std::string> selected_candidate_pair_id; |
392 RTCStatsMember<std::string> local_certificate_id; | 391 RTCStatsMember<std::string> local_certificate_id; |
393 RTCStatsMember<std::string> remote_certificate_id; | 392 RTCStatsMember<std::string> remote_certificate_id; |
394 }; | 393 }; |
395 | 394 |
396 } // namespace webrtc | 395 } // namespace webrtc |
397 | 396 |
398 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ | 397 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ |
OLD | NEW |