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<bool> writable; | 146 RTCStatsMember<bool> writable; |
147 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 147 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
148 RTCStatsMember<bool> readable; | 148 RTCStatsMember<bool> readable; |
149 RTCStatsMember<uint64_t> bytes_sent; | 149 RTCStatsMember<uint64_t> bytes_sent; |
150 RTCStatsMember<uint64_t> bytes_received; | 150 RTCStatsMember<uint64_t> bytes_received; |
151 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 151 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
152 RTCStatsMember<double> total_round_trip_time; | 152 RTCStatsMember<double> total_round_trip_time; |
153 // TODO(hbos): Collected by |RTCStatsCollector| but different than the spec. | 153 // TODO(hbos): Collected by |RTCStatsCollector| but different than the spec. |
154 // crbug.com/633550 | 154 // crbug.com/633550 |
155 RTCStatsMember<double> current_round_trip_time; | 155 RTCStatsMember<double> current_round_trip_time; |
156 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | |
157 RTCStatsMember<double> available_outgoing_bitrate; | 156 RTCStatsMember<double> available_outgoing_bitrate; |
158 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | |
159 RTCStatsMember<double> available_incoming_bitrate; | 157 RTCStatsMember<double> available_incoming_bitrate; |
160 RTCStatsMember<uint64_t> requests_received; | 158 RTCStatsMember<uint64_t> requests_received; |
161 RTCStatsMember<uint64_t> requests_sent; | 159 RTCStatsMember<uint64_t> requests_sent; |
162 RTCStatsMember<uint64_t> responses_received; | 160 RTCStatsMember<uint64_t> responses_received; |
163 RTCStatsMember<uint64_t> responses_sent; | 161 RTCStatsMember<uint64_t> responses_sent; |
164 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 162 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
165 RTCStatsMember<uint64_t> retransmissions_received; | 163 RTCStatsMember<uint64_t> retransmissions_received; |
166 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 164 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
167 RTCStatsMember<uint64_t> retransmissions_sent; | 165 RTCStatsMember<uint64_t> retransmissions_sent; |
168 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 | 166 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/633550 |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 // TODO(hbos): Support enum types? "RTCStatsMember<RTCDtlsTransportState>"? | 410 // TODO(hbos): Support enum types? "RTCStatsMember<RTCDtlsTransportState>"? |
413 RTCStatsMember<std::string> dtls_state; | 411 RTCStatsMember<std::string> dtls_state; |
414 RTCStatsMember<std::string> selected_candidate_pair_id; | 412 RTCStatsMember<std::string> selected_candidate_pair_id; |
415 RTCStatsMember<std::string> local_certificate_id; | 413 RTCStatsMember<std::string> local_certificate_id; |
416 RTCStatsMember<std::string> remote_certificate_id; | 414 RTCStatsMember<std::string> remote_certificate_id; |
417 }; | 415 }; |
418 | 416 |
419 } // namespace webrtc | 417 } // namespace webrtc |
420 | 418 |
421 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ | 419 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ |
OLD | NEW |