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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 RTCStatsMember<uint64_t> bytes_received; | 135 RTCStatsMember<uint64_t> bytes_received; |
136 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 136 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
137 RTCStatsMember<double> total_rtt; | 137 RTCStatsMember<double> total_rtt; |
138 // TODO(hbos): Collected by |RTCStatsCollector| but different than the spec. | 138 // TODO(hbos): Collected by |RTCStatsCollector| but different than the spec. |
139 // crbug.com/633550 | 139 // crbug.com/633550 |
140 RTCStatsMember<double> current_rtt; | 140 RTCStatsMember<double> current_rtt; |
141 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 141 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
142 RTCStatsMember<double> available_outgoing_bitrate; | 142 RTCStatsMember<double> available_outgoing_bitrate; |
143 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 143 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
144 RTCStatsMember<double> available_incoming_bitrate; | 144 RTCStatsMember<double> available_incoming_bitrate; |
145 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | |
146 RTCStatsMember<uint64_t> requests_received; | 145 RTCStatsMember<uint64_t> requests_received; |
147 RTCStatsMember<uint64_t> requests_sent; | 146 RTCStatsMember<uint64_t> requests_sent; |
148 RTCStatsMember<uint64_t> responses_received; | 147 RTCStatsMember<uint64_t> responses_received; |
149 RTCStatsMember<uint64_t> responses_sent; | 148 RTCStatsMember<uint64_t> responses_sent; |
150 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 149 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
151 RTCStatsMember<uint64_t> retransmissions_received; | 150 RTCStatsMember<uint64_t> retransmissions_received; |
152 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 151 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
153 RTCStatsMember<uint64_t> retransmissions_sent; | 152 RTCStatsMember<uint64_t> retransmissions_sent; |
154 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 153 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
155 RTCStatsMember<uint64_t> consent_requests_received; | 154 RTCStatsMember<uint64_t> consent_requests_received; |
(...skipping 235 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 |