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