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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 kStatsValueNameMediaType, | 110 kStatsValueNameMediaType, |
111 kStatsValueNamePacketsLost, | 111 kStatsValueNamePacketsLost, |
112 kStatsValueNamePacketsReceived, | 112 kStatsValueNamePacketsReceived, |
113 kStatsValueNamePacketsSent, | 113 kStatsValueNamePacketsSent, |
114 kStatsValueNameProtocol, | 114 kStatsValueNameProtocol, |
115 kStatsValueNameReceiving, | 115 kStatsValueNameReceiving, |
116 kStatsValueNameSelectedCandidatePairId, | 116 kStatsValueNameSelectedCandidatePairId, |
117 kStatsValueNameSsrc, | 117 kStatsValueNameSsrc, |
118 kStatsValueNameState, | 118 kStatsValueNameState, |
119 kStatsValueNameTransportId, | 119 kStatsValueNameTransportId, |
| 120 kStatsValueNameSentPingRequests, |
| 121 kStatsValueNameRecvPingResponses, |
120 | 122 |
121 // Internal StatsValue names. | 123 // Internal StatsValue names. |
122 kStatsValueNameAccelerateRate, | 124 kStatsValueNameAccelerateRate, |
123 kStatsValueNameActualEncBitrate, | 125 kStatsValueNameActualEncBitrate, |
124 kStatsValueNameAdaptationChanges, | 126 kStatsValueNameAdaptationChanges, |
125 kStatsValueNameAvailableReceiveBandwidth, | 127 kStatsValueNameAvailableReceiveBandwidth, |
126 kStatsValueNameAvailableSendBandwidth, | 128 kStatsValueNameAvailableSendBandwidth, |
127 kStatsValueNameAvgEncodeMs, | 129 kStatsValueNameAvgEncodeMs, |
128 kStatsValueNameBandwidthLimitedResolution, | 130 kStatsValueNameBandwidthLimitedResolution, |
129 kStatsValueNameBucketDelay, | 131 kStatsValueNameBucketDelay, |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 StatsReport* Find(const StatsReport::Id& id); | 397 StatsReport* Find(const StatsReport::Id& id); |
396 | 398 |
397 private: | 399 private: |
398 Container list_; | 400 Container list_; |
399 rtc::ThreadChecker thread_checker_; | 401 rtc::ThreadChecker thread_checker_; |
400 }; | 402 }; |
401 | 403 |
402 } // namespace webrtc | 404 } // namespace webrtc |
403 | 405 |
404 #endif // WEBRTC_API_STATSTYPES_H_ | 406 #endif // WEBRTC_API_STATSTYPES_H_ |
OLD | NEW |