| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 RTCStatsMember<std::string> track_identifier; | 233 RTCStatsMember<std::string> track_identifier; |
| 234 RTCStatsMember<bool> remote_source; | 234 RTCStatsMember<bool> remote_source; |
| 235 RTCStatsMember<bool> ended; | 235 RTCStatsMember<bool> ended; |
| 236 // TODO(hbos): |RTCStatsCollector| does not return stats for detached tracks. | 236 // TODO(hbos): |RTCStatsCollector| does not return stats for detached tracks. |
| 237 // crbug.com/659137 | 237 // crbug.com/659137 |
| 238 RTCStatsMember<bool> detached; | 238 RTCStatsMember<bool> detached; |
| 239 RTCStatsMember<std::vector<std::string>> ssrc_ids; | 239 RTCStatsMember<std::vector<std::string>> ssrc_ids; |
| 240 // Video-only members | 240 // Video-only members |
| 241 RTCStatsMember<uint32_t> frame_width; | 241 RTCStatsMember<uint32_t> frame_width; |
| 242 RTCStatsMember<uint32_t> frame_height; | 242 RTCStatsMember<uint32_t> frame_height; |
| 243 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | |
| 244 RTCStatsMember<double> frames_per_second; | 243 RTCStatsMember<double> frames_per_second; |
| 245 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | 244 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 |
| 246 RTCStatsMember<uint32_t> frames_sent; | 245 RTCStatsMember<uint32_t> frames_sent; |
| 247 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | 246 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 |
| 248 RTCStatsMember<uint32_t> frames_received; | 247 RTCStatsMember<uint32_t> frames_received; |
| 249 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | |
| 250 RTCStatsMember<uint32_t> frames_decoded; | 248 RTCStatsMember<uint32_t> frames_decoded; |
| 251 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | 249 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 |
| 252 RTCStatsMember<uint32_t> frames_dropped; | 250 RTCStatsMember<uint32_t> frames_dropped; |
| 253 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | 251 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 |
| 254 RTCStatsMember<uint32_t> frames_corrupted; | 252 RTCStatsMember<uint32_t> frames_corrupted; |
| 255 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | 253 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 |
| 256 RTCStatsMember<uint32_t> partial_frames_lost; | 254 RTCStatsMember<uint32_t> partial_frames_lost; |
| 257 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 | 255 // TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137 |
| 258 RTCStatsMember<uint32_t> full_frames_lost; | 256 RTCStatsMember<uint32_t> full_frames_lost; |
| 259 // Audio-only members | 257 // Audio-only members |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 RTCStatsMember<std::string> rtcp_transport_stats_id; | 385 RTCStatsMember<std::string> rtcp_transport_stats_id; |
| 388 RTCStatsMember<bool> active_connection; | 386 RTCStatsMember<bool> active_connection; |
| 389 RTCStatsMember<std::string> selected_candidate_pair_id; | 387 RTCStatsMember<std::string> selected_candidate_pair_id; |
| 390 RTCStatsMember<std::string> local_certificate_id; | 388 RTCStatsMember<std::string> local_certificate_id; |
| 391 RTCStatsMember<std::string> remote_certificate_id; | 389 RTCStatsMember<std::string> remote_certificate_id; |
| 392 }; | 390 }; |
| 393 | 391 |
| 394 } // namespace webrtc | 392 } // namespace webrtc |
| 395 | 393 |
| 396 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ | 394 #endif // WEBRTC_API_STATS_RTCSTATS_OBJECTS_H_ |
| OLD | NEW |