1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef API_TEST_STATS_OBSERVER_INTERFACE_H_
- #define API_TEST_STATS_OBSERVER_INTERFACE_H_
- #include "absl/strings/string_view.h"
- #include "api/stats/rtc_stats_report.h"
- namespace webrtc {
- namespace webrtc_pc_e2e {
- class StatsObserverInterface {
- public:
- virtual ~StatsObserverInterface() = default;
-
-
- virtual void OnStatsReports(
- absl::string_view pc_label,
- const rtc::scoped_refptr<const RTCStatsReport>& report) = 0;
- };
- }
- }
- #endif
|