| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 kStatsValueNameRemoteCandidateId, | 205 kStatsValueNameRemoteCandidateId, |
| 206 kStatsValueNameRemoteCandidateType, | 206 kStatsValueNameRemoteCandidateType, |
| 207 kStatsValueNameRemoteCertificateId, | 207 kStatsValueNameRemoteCertificateId, |
| 208 kStatsValueNameRenderDelayMs, | 208 kStatsValueNameRenderDelayMs, |
| 209 kStatsValueNameResidualEchoLikelihood, | 209 kStatsValueNameResidualEchoLikelihood, |
| 210 kStatsValueNameResidualEchoLikelihoodRecentMax, | 210 kStatsValueNameResidualEchoLikelihoodRecentMax, |
| 211 kStatsValueNameAnaBitrateActionCounter, | 211 kStatsValueNameAnaBitrateActionCounter, |
| 212 kStatsValueNameAnaChannelActionCounter, | 212 kStatsValueNameAnaChannelActionCounter, |
| 213 kStatsValueNameAnaDtxActionCounter, | 213 kStatsValueNameAnaDtxActionCounter, |
| 214 kStatsValueNameAnaFecActionCounter, | 214 kStatsValueNameAnaFecActionCounter, |
| 215 kStatsValueNameAnaFrameLengthActionCounter, | 215 kStatsValueNameAnaFrameLengthIncreaseCounter, |
| 216 kStatsValueNameAnaFrameLengthDecreaseCounter, |
| 217 kStatsValueNameAnaUplinkPacketLossFraction, |
| 216 kStatsValueNameRetransmitBitrate, | 218 kStatsValueNameRetransmitBitrate, |
| 217 kStatsValueNameRtt, | 219 kStatsValueNameRtt, |
| 218 kStatsValueNameSecondaryDecodedRate, | 220 kStatsValueNameSecondaryDecodedRate, |
| 219 kStatsValueNameSecondaryDiscardedRate, | 221 kStatsValueNameSecondaryDiscardedRate, |
| 220 kStatsValueNameSendPacketsDiscarded, | 222 kStatsValueNameSendPacketsDiscarded, |
| 221 kStatsValueNameSpeechExpandRate, | 223 kStatsValueNameSpeechExpandRate, |
| 222 kStatsValueNameSrtpCipher, | 224 kStatsValueNameSrtpCipher, |
| 223 kStatsValueNameTargetDelayMs, | 225 kStatsValueNameTargetDelayMs, |
| 224 kStatsValueNameTargetEncBitrate, | 226 kStatsValueNameTargetEncBitrate, |
| 225 kStatsValueNameTimingFrameInfo, // Result of |TimingFrameInfo::ToString| | 227 kStatsValueNameTimingFrameInfo, // Result of |TimingFrameInfo::ToString| |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 StatsReport* Find(const StatsReport::Id& id); | 435 StatsReport* Find(const StatsReport::Id& id); |
| 434 | 436 |
| 435 private: | 437 private: |
| 436 Container list_; | 438 Container list_; |
| 437 rtc::ThreadChecker thread_checker_; | 439 rtc::ThreadChecker thread_checker_; |
| 438 }; | 440 }; |
| 439 | 441 |
| 440 } // namespace webrtc | 442 } // namespace webrtc |
| 441 | 443 |
| 442 #endif // WEBRTC_API_STATSTYPES_H_ | 444 #endif // WEBRTC_API_STATSTYPES_H_ |
| OLD | NEW |