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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 &transport_id, | 148 &transport_id, |
149 &local_candidate_id, | 149 &local_candidate_id, |
150 &remote_candidate_id, | 150 &remote_candidate_id, |
151 &state, | 151 &state, |
152 &priority, | 152 &priority, |
153 &nominated, | 153 &nominated, |
154 &writable, | 154 &writable, |
155 &readable, | 155 &readable, |
156 &bytes_sent, | 156 &bytes_sent, |
157 &bytes_received, | 157 &bytes_received, |
158 &total_rtt, | 158 &total_round_trip_time, |
159 ¤t_rtt, | 159 ¤t_round_trip_time, |
160 &available_outgoing_bitrate, | 160 &available_outgoing_bitrate, |
161 &available_incoming_bitrate, | 161 &available_incoming_bitrate, |
162 &requests_received, | 162 &requests_received, |
163 &requests_sent, | 163 &requests_sent, |
164 &responses_received, | 164 &responses_received, |
165 &responses_sent, | 165 &responses_sent, |
166 &retransmissions_received, | 166 &retransmissions_received, |
167 &retransmissions_sent, | 167 &retransmissions_sent, |
168 &consent_requests_received, | 168 &consent_requests_received, |
169 &consent_requests_sent, | 169 &consent_requests_sent, |
(...skipping 11 matching lines...) Expand all Loading... |
181 transport_id("transportId"), | 181 transport_id("transportId"), |
182 local_candidate_id("localCandidateId"), | 182 local_candidate_id("localCandidateId"), |
183 remote_candidate_id("remoteCandidateId"), | 183 remote_candidate_id("remoteCandidateId"), |
184 state("state"), | 184 state("state"), |
185 priority("priority"), | 185 priority("priority"), |
186 nominated("nominated"), | 186 nominated("nominated"), |
187 writable("writable"), | 187 writable("writable"), |
188 readable("readable"), | 188 readable("readable"), |
189 bytes_sent("bytesSent"), | 189 bytes_sent("bytesSent"), |
190 bytes_received("bytesReceived"), | 190 bytes_received("bytesReceived"), |
191 total_rtt("totalRtt"), | 191 total_round_trip_time("totalRoundTripTime"), |
192 current_rtt("currentRtt"), | 192 current_round_trip_time("currentRoundTripTime"), |
193 available_outgoing_bitrate("availableOutgoingBitrate"), | 193 available_outgoing_bitrate("availableOutgoingBitrate"), |
194 available_incoming_bitrate("availableIncomingBitrate"), | 194 available_incoming_bitrate("availableIncomingBitrate"), |
195 requests_received("requestsReceived"), | 195 requests_received("requestsReceived"), |
196 requests_sent("requestsSent"), | 196 requests_sent("requestsSent"), |
197 responses_received("responsesReceived"), | 197 responses_received("responsesReceived"), |
198 responses_sent("responsesSent"), | 198 responses_sent("responsesSent"), |
199 retransmissions_received("retransmissionsReceived"), | 199 retransmissions_received("retransmissionsReceived"), |
200 retransmissions_sent("retransmissionsSent"), | 200 retransmissions_sent("retransmissionsSent"), |
201 consent_requests_received("consentRequestsReceived"), | 201 consent_requests_received("consentRequestsReceived"), |
202 consent_requests_sent("consentRequestsSent"), | 202 consent_requests_sent("consentRequestsSent"), |
203 consent_responses_received("consentResponsesReceived"), | 203 consent_responses_received("consentResponsesReceived"), |
204 consent_responses_sent("consentResponsesSent") { | 204 consent_responses_sent("consentResponsesSent") { |
205 } | 205 } |
206 | 206 |
207 RTCIceCandidatePairStats::RTCIceCandidatePairStats( | 207 RTCIceCandidatePairStats::RTCIceCandidatePairStats( |
208 const RTCIceCandidatePairStats& other) | 208 const RTCIceCandidatePairStats& other) |
209 : RTCStats(other.id(), other.timestamp_us()), | 209 : RTCStats(other.id(), other.timestamp_us()), |
210 transport_id(other.transport_id), | 210 transport_id(other.transport_id), |
211 local_candidate_id(other.local_candidate_id), | 211 local_candidate_id(other.local_candidate_id), |
212 remote_candidate_id(other.remote_candidate_id), | 212 remote_candidate_id(other.remote_candidate_id), |
213 state(other.state), | 213 state(other.state), |
214 priority(other.priority), | 214 priority(other.priority), |
215 nominated(other.nominated), | 215 nominated(other.nominated), |
216 writable(other.writable), | 216 writable(other.writable), |
217 readable(other.readable), | 217 readable(other.readable), |
218 bytes_sent(other.bytes_sent), | 218 bytes_sent(other.bytes_sent), |
219 bytes_received(other.bytes_received), | 219 bytes_received(other.bytes_received), |
220 total_rtt(other.total_rtt), | 220 total_round_trip_time(other.total_round_trip_time), |
221 current_rtt(other.current_rtt), | 221 current_round_trip_time(other.current_round_trip_time), |
222 available_outgoing_bitrate(other.available_outgoing_bitrate), | 222 available_outgoing_bitrate(other.available_outgoing_bitrate), |
223 available_incoming_bitrate(other.available_incoming_bitrate), | 223 available_incoming_bitrate(other.available_incoming_bitrate), |
224 requests_received(other.requests_received), | 224 requests_received(other.requests_received), |
225 requests_sent(other.requests_sent), | 225 requests_sent(other.requests_sent), |
226 responses_received(other.responses_received), | 226 responses_received(other.responses_received), |
227 responses_sent(other.responses_sent), | 227 responses_sent(other.responses_sent), |
228 retransmissions_received(other.retransmissions_received), | 228 retransmissions_received(other.retransmissions_received), |
229 retransmissions_sent(other.retransmissions_sent), | 229 retransmissions_sent(other.retransmissions_sent), |
230 consent_requests_received(other.consent_requests_received), | 230 consent_requests_received(other.consent_requests_received), |
231 consent_requests_sent(other.consent_requests_sent), | 231 consent_requests_sent(other.consent_requests_sent), |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 active_connection(other.active_connection), | 618 active_connection(other.active_connection), |
619 selected_candidate_pair_id(other.selected_candidate_pair_id), | 619 selected_candidate_pair_id(other.selected_candidate_pair_id), |
620 local_certificate_id(other.local_certificate_id), | 620 local_certificate_id(other.local_certificate_id), |
621 remote_certificate_id(other.remote_certificate_id) { | 621 remote_certificate_id(other.remote_certificate_id) { |
622 } | 622 } |
623 | 623 |
624 RTCTransportStats::~RTCTransportStats() { | 624 RTCTransportStats::~RTCTransportStats() { |
625 } | 625 } |
626 | 626 |
627 } // namespace webrtc | 627 } // namespace webrtc |
OLD | NEW |