| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 kStatsValueNamePlisSent, | 201 kStatsValueNamePlisSent, |
| 202 kStatsValueNamePreemptiveExpandRate, | 202 kStatsValueNamePreemptiveExpandRate, |
| 203 kStatsValueNamePreferredJitterBufferMs, | 203 kStatsValueNamePreferredJitterBufferMs, |
| 204 kStatsValueNameRemoteAddress, | 204 kStatsValueNameRemoteAddress, |
| 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, |
| 212 kStatsValueNameAnaChannelActionCounter, |
| 213 kStatsValueNameAnaDtxActionCounter, |
| 214 kStatsValueNameAnaFecActionCounter, |
| 215 kStatsValueNameAnaFrameLengthActionCounter, |
| 211 kStatsValueNameRetransmitBitrate, | 216 kStatsValueNameRetransmitBitrate, |
| 212 kStatsValueNameRtt, | 217 kStatsValueNameRtt, |
| 213 kStatsValueNameSecondaryDecodedRate, | 218 kStatsValueNameSecondaryDecodedRate, |
| 214 kStatsValueNameSecondaryDiscardedRate, | 219 kStatsValueNameSecondaryDiscardedRate, |
| 215 kStatsValueNameSendPacketsDiscarded, | 220 kStatsValueNameSendPacketsDiscarded, |
| 216 kStatsValueNameSpeechExpandRate, | 221 kStatsValueNameSpeechExpandRate, |
| 217 kStatsValueNameSrtpCipher, | 222 kStatsValueNameSrtpCipher, |
| 218 kStatsValueNameTargetDelayMs, | 223 kStatsValueNameTargetDelayMs, |
| 219 kStatsValueNameTargetEncBitrate, | 224 kStatsValueNameTargetEncBitrate, |
| 220 kStatsValueNameTimingFrameInfo, // Result of |TimingFrameInfo::ToString| | 225 kStatsValueNameTimingFrameInfo, // Result of |TimingFrameInfo::ToString| |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 StatsReport* Find(const StatsReport::Id& id); | 433 StatsReport* Find(const StatsReport::Id& id); |
| 429 | 434 |
| 430 private: | 435 private: |
| 431 Container list_; | 436 Container list_; |
| 432 rtc::ThreadChecker thread_checker_; | 437 rtc::ThreadChecker thread_checker_; |
| 433 }; | 438 }; |
| 434 | 439 |
| 435 } // namespace webrtc | 440 } // namespace webrtc |
| 436 | 441 |
| 437 #endif // WEBRTC_API_STATSTYPES_H_ | 442 #endif // WEBRTC_API_STATSTYPES_H_ |
| OLD | NEW |