Files
platform-external-webrtc/test/pc/e2e/stats_provider.h
Artem Titov 5f308fdd89 [PCLF] Make it possible to unregister participant for stats poller
Bug: b/231397778
Change-Id: I54c95543cbcf7d6ec9ae0bd121a07fd4e2a1fd4c
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/265408
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37169}
2022-06-09 20:09:43 +00:00

30 lines
825 B
C++

/*
* Copyright (c) 2022 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef TEST_PC_E2E_STATS_PROVIDER_H_
#define TEST_PC_E2E_STATS_PROVIDER_H_
#include "api/stats/rtc_stats_collector_callback.h"
namespace webrtc {
namespace webrtc_pc_e2e {
class StatsProvider {
public:
virtual ~StatsProvider() = default;
virtual void GetStats(RTCStatsCollectorCallback* callback) = 0;
};
} // namespace webrtc_pc_e2e
} // namespace webrtc
#endif // TEST_PC_E2E_STATS_PROVIDER_H_