| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 kStatsValueNameLocalCandidateType, | 194 kStatsValueNameLocalCandidateType, |
| 195 kStatsValueNameLocalCertificateId, | 195 kStatsValueNameLocalCertificateId, |
| 196 kStatsValueNameMaxDecodeMs, | 196 kStatsValueNameMaxDecodeMs, |
| 197 kStatsValueNameMinPlayoutDelayMs, | 197 kStatsValueNameMinPlayoutDelayMs, |
| 198 kStatsValueNameNacksReceived, | 198 kStatsValueNameNacksReceived, |
| 199 kStatsValueNameNacksSent, | 199 kStatsValueNameNacksSent, |
| 200 kStatsValueNamePlisReceived, | 200 kStatsValueNamePlisReceived, |
| 201 kStatsValueNamePlisSent, | 201 kStatsValueNamePlisSent, |
| 202 kStatsValueNamePreemptiveExpandRate, | 202 kStatsValueNamePreemptiveExpandRate, |
| 203 kStatsValueNamePreferredJitterBufferMs, | 203 kStatsValueNamePreferredJitterBufferMs, |
| 204 kStatsValueNameQpReceived, |
| 204 kStatsValueNameRemoteAddress, | 205 kStatsValueNameRemoteAddress, |
| 205 kStatsValueNameRemoteCandidateId, | 206 kStatsValueNameRemoteCandidateId, |
| 206 kStatsValueNameRemoteCandidateType, | 207 kStatsValueNameRemoteCandidateType, |
| 207 kStatsValueNameRemoteCertificateId, | 208 kStatsValueNameRemoteCertificateId, |
| 208 kStatsValueNameRenderDelayMs, | 209 kStatsValueNameRenderDelayMs, |
| 209 kStatsValueNameRetransmitBitrate, | 210 kStatsValueNameRetransmitBitrate, |
| 210 kStatsValueNameRtt, | 211 kStatsValueNameRtt, |
| 211 kStatsValueNameSecondaryDecodedRate, | 212 kStatsValueNameSecondaryDecodedRate, |
| 212 kStatsValueNameSendPacketsDiscarded, | 213 kStatsValueNameSendPacketsDiscarded, |
| 213 kStatsValueNameSpeechExpandRate, | 214 kStatsValueNameSpeechExpandRate, |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 StatsReport* Find(const StatsReport::Id& id); | 409 StatsReport* Find(const StatsReport::Id& id); |
| 409 | 410 |
| 410 private: | 411 private: |
| 411 Container list_; | 412 Container list_; |
| 412 rtc::ThreadChecker thread_checker_; | 413 rtc::ThreadChecker thread_checker_; |
| 413 }; | 414 }; |
| 414 | 415 |
| 415 } // namespace webrtc | 416 } // namespace webrtc |
| 416 | 417 |
| 417 #endif // TALK_APP_WEBRTC_STATSTYPES_H_ | 418 #endif // TALK_APP_WEBRTC_STATSTYPES_H_ |
| OLD | NEW |