Chromium Code Reviews| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 203 kStatsValueNameResidualEchoLikelihood, | 203 kStatsValueNameResidualEchoLikelihood, |
| 204 kStatsValueNameResidualEchoLikelihoodRecentMax, | 204 kStatsValueNameResidualEchoLikelihoodRecentMax, |
| 205 kStatsValueNameRetransmitBitrate, | 205 kStatsValueNameRetransmitBitrate, |
| 206 kStatsValueNameRtt, | 206 kStatsValueNameRtt, |
| 207 kStatsValueNameSecondaryDecodedRate, | 207 kStatsValueNameSecondaryDecodedRate, |
| 208 kStatsValueNameSendPacketsDiscarded, | 208 kStatsValueNameSendPacketsDiscarded, |
| 209 kStatsValueNameSpeechExpandRate, | 209 kStatsValueNameSpeechExpandRate, |
| 210 kStatsValueNameSrtpCipher, | 210 kStatsValueNameSrtpCipher, |
| 211 kStatsValueNameTargetDelayMs, | 211 kStatsValueNameTargetDelayMs, |
| 212 kStatsValueNameTargetEncBitrate, | 212 kStatsValueNameTargetEncBitrate, |
| 213 kStatsValueNameTimingFrameInfo, | |
|
Taylor Brandstetter
2017/06/25 20:48:03
Can you add a comment saying that this value is th
ilnik
2017/06/26 08:46:38
Done.
| |
| 213 kStatsValueNameTrackId, | 214 kStatsValueNameTrackId, |
| 214 kStatsValueNameTransmitBitrate, | 215 kStatsValueNameTransmitBitrate, |
| 215 kStatsValueNameTransportType, | 216 kStatsValueNameTransportType, |
| 216 kStatsValueNameTypingNoiseState, | 217 kStatsValueNameTypingNoiseState, |
| 217 kStatsValueNameWritable, | 218 kStatsValueNameWritable, |
| 218 }; | 219 }; |
| 219 | 220 |
| 220 class IdBase : public rtc::RefCountInterface { | 221 class IdBase : public rtc::RefCountInterface { |
| 221 public: | 222 public: |
| 222 ~IdBase() override; | 223 ~IdBase() override; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 420 StatsReport* Find(const StatsReport::Id& id); | 421 StatsReport* Find(const StatsReport::Id& id); |
| 421 | 422 |
| 422 private: | 423 private: |
| 423 Container list_; | 424 Container list_; |
| 424 rtc::ThreadChecker thread_checker_; | 425 rtc::ThreadChecker thread_checker_; |
| 425 }; | 426 }; |
| 426 | 427 |
| 427 } // namespace webrtc | 428 } // namespace webrtc |
| 428 | 429 |
| 429 #endif // WEBRTC_API_STATSTYPES_H_ | 430 #endif // WEBRTC_API_STATSTYPES_H_ |
| OLD | NEW |