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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 }; | 115 }; |
116 | 116 |
117 enum StatsValueName { | 117 enum StatsValueName { |
118 kStatsValueNameActiveConnection, | 118 kStatsValueNameActiveConnection, |
119 kStatsValueNameAudioInputLevel, | 119 kStatsValueNameAudioInputLevel, |
120 kStatsValueNameAudioOutputLevel, | 120 kStatsValueNameAudioOutputLevel, |
121 kStatsValueNameBytesReceived, | 121 kStatsValueNameBytesReceived, |
122 kStatsValueNameBytesSent, | 122 kStatsValueNameBytesSent, |
123 kStatsValueNameCodecImplementationName, | 123 kStatsValueNameCodecImplementationName, |
124 kStatsValueNameDataChannelId, | 124 kStatsValueNameDataChannelId, |
| 125 kStatsValueNameMediaType, |
125 kStatsValueNamePacketsLost, | 126 kStatsValueNamePacketsLost, |
126 kStatsValueNamePacketsReceived, | 127 kStatsValueNamePacketsReceived, |
127 kStatsValueNamePacketsSent, | 128 kStatsValueNamePacketsSent, |
128 kStatsValueNameProtocol, | 129 kStatsValueNameProtocol, |
129 kStatsValueNameReceiving, | 130 kStatsValueNameReceiving, |
130 kStatsValueNameSelectedCandidatePairId, | 131 kStatsValueNameSelectedCandidatePairId, |
131 kStatsValueNameSsrc, | 132 kStatsValueNameSsrc, |
132 kStatsValueNameState, | 133 kStatsValueNameState, |
133 kStatsValueNameTransportId, | 134 kStatsValueNameTransportId, |
134 | 135 |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 StatsReport* Find(const StatsReport::Id& id); | 410 StatsReport* Find(const StatsReport::Id& id); |
410 | 411 |
411 private: | 412 private: |
412 Container list_; | 413 Container list_; |
413 rtc::ThreadChecker thread_checker_; | 414 rtc::ThreadChecker thread_checker_; |
414 }; | 415 }; |
415 | 416 |
416 } // namespace webrtc | 417 } // namespace webrtc |
417 | 418 |
418 #endif // TALK_APP_WEBRTC_STATSTYPES_H_ | 419 #endif // TALK_APP_WEBRTC_STATSTYPES_H_ |
OLD | NEW |