blob: 9782191b967709ba08eb3299cf46150db2cafa73 [file] [log] [blame]
Mirko Bonadei12ae4f42019-02-26 15:19:07 +01001/*
2 * Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_
12#define TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_
13
14#include "absl/strings/string_view.h"
15#include "api/stats_types.h"
16
17namespace webrtc {
Artem Titov0b443142019-03-20 11:11:08 +010018namespace webrtc_pc_e2e {
Mirko Bonadei12ae4f42019-02-26 15:19:07 +010019
20class StatsObserverInterface {
21 public:
22 virtual ~StatsObserverInterface() = default;
23
24 // Method called when stats reports are available for the PeerConnection
25 // identified by |pc_label|.
26 virtual void OnStatsReports(absl::string_view pc_label,
27 const StatsReports& reports) = 0;
28};
29
Artem Titov0b443142019-03-20 11:11:08 +010030} // namespace webrtc_pc_e2e
Mirko Bonadei12ae4f42019-02-26 15:19:07 +010031} // namespace webrtc
32
33#endif // TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_