Mirko Bonadei | 12ae4f4 | 2019-02-26 15:19:07 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | namespace webrtc { |
Artem Titov | 0b44314 | 2019-03-20 11:11:08 +0100 | [diff] [blame^] | 18 | namespace webrtc_pc_e2e { |
Mirko Bonadei | 12ae4f4 | 2019-02-26 15:19:07 +0100 | [diff] [blame] | 19 | |
| 20 | class 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 Titov | 0b44314 | 2019-03-20 11:11:08 +0100 | [diff] [blame^] | 30 | } // namespace webrtc_pc_e2e |
Mirko Bonadei | 12ae4f4 | 2019-02-26 15:19:07 +0100 | [diff] [blame] | 31 | } // namespace webrtc |
| 32 | |
| 33 | #endif // TEST_PC_E2E_API_STATS_OBSERVER_INTERFACE_H_ |