1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef PC_RTC_STATS_TRAVERSAL_H_
- #define PC_RTC_STATS_TRAVERSAL_H_
- #include <string>
- #include <vector>
- #include "api/scoped_refptr.h"
- #include "api/stats/rtc_stats.h"
- #include "api/stats/rtc_stats_report.h"
- namespace webrtc {
- rtc::scoped_refptr<RTCStatsReport> TakeReferencedStats(
- rtc::scoped_refptr<RTCStatsReport> report,
- const std::vector<std::string>& ids);
- std::vector<const std::string*> GetStatsReferencedIds(const RTCStats& stats);
- }
- #endif
|