| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // Produces |RTCCodecStats|. | 98 // Produces |RTCCodecStats|. |
| 99 void ProduceCodecStats_n( | 99 void ProduceCodecStats_n( |
| 100 int64_t timestamp_us, const TrackMediaInfoMap& track_media_info_map, | 100 int64_t timestamp_us, const TrackMediaInfoMap& track_media_info_map, |
| 101 RTCStatsReport* report) const; | 101 RTCStatsReport* report) const; |
| 102 // Produces |RTCDataChannelStats|. | 102 // Produces |RTCDataChannelStats|. |
| 103 void ProduceDataChannelStats_s( | 103 void ProduceDataChannelStats_s( |
| 104 int64_t timestamp_us, RTCStatsReport* report) const; | 104 int64_t timestamp_us, RTCStatsReport* report) const; |
| 105 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|. | 105 // Produces |RTCIceCandidatePairStats| and |RTCIceCandidateStats|. |
| 106 void ProduceIceCandidateAndPairStats_n( | 106 void ProduceIceCandidateAndPairStats_n( |
| 107 int64_t timestamp_us, const SessionStats& session_stats, | 107 int64_t timestamp_us, const SessionStats& session_stats, |
| 108 const cricket::VideoMediaInfo* video_media_info, |
| 108 RTCStatsReport* report) const; | 109 RTCStatsReport* report) const; |
| 109 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|. | 110 // Produces |RTCMediaStreamStats| and |RTCMediaStreamTrackStats|. |
| 110 void ProduceMediaStreamAndTrackStats_s( | 111 void ProduceMediaStreamAndTrackStats_s( |
| 111 int64_t timestamp_us, RTCStatsReport* report) const; | 112 int64_t timestamp_us, RTCStatsReport* report) const; |
| 112 // Produces |RTCPeerConnectionStats|. | 113 // Produces |RTCPeerConnectionStats|. |
| 113 void ProducePeerConnectionStats_s( | 114 void ProducePeerConnectionStats_s( |
| 114 int64_t timestamp_us, RTCStatsReport* report) const; | 115 int64_t timestamp_us, RTCStatsReport* report) const; |
| 115 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|. | 116 // Produces |RTCInboundRTPStreamStats| and |RTCOutboundRTPStreamStats|. |
| 116 void ProduceRTPStreamStats_n( | 117 void ProduceRTPStreamStats_n( |
| 117 int64_t timestamp_us, const SessionStats& session_stats, | 118 int64_t timestamp_us, const SessionStats& session_stats, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 }; | 184 }; |
| 184 | 185 |
| 185 const char* CandidateTypeToRTCIceCandidateTypeForTesting( | 186 const char* CandidateTypeToRTCIceCandidateTypeForTesting( |
| 186 const std::string& type); | 187 const std::string& type); |
| 187 const char* DataStateToRTCDataChannelStateForTesting( | 188 const char* DataStateToRTCDataChannelStateForTesting( |
| 188 DataChannelInterface::DataState state); | 189 DataChannelInterface::DataState state); |
| 189 | 190 |
| 190 } // namespace webrtc | 191 } // namespace webrtc |
| 191 | 192 |
| 192 #endif // WEBRTC_PC_RTCSTATSCOLLECTOR_H_ | 193 #endif // WEBRTC_PC_RTCSTATSCOLLECTOR_H_ |
| OLD | NEW |