LeviLamina
Loading...
Searching...
No Matches
NetworkStateEstimator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { struct NetworkRouteChange; }
8namespace webrtc { struct NetworkStateEstimate; }
9namespace webrtc { struct PacketResult; }
10namespace webrtc { struct TransportPacketsFeedback; }
11// clang-format on
12
13namespace webrtc {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ::std::optional<::webrtc::NetworkStateEstimate> GetCurrentEstimate() = 0;
21
22 // vIndex: 1
23 virtual void OnTransportPacketsFeedback(::webrtc::TransportPacketsFeedback const&) = 0;
24
25 // vIndex: 2
26 virtual void OnReceivedPacket(::webrtc::PacketResult const&);
27
28 // vIndex: 3
29 virtual void OnRouteChange(::webrtc::NetworkRouteChange const&) = 0;
30
31 // vIndex: 4
32 virtual ~NetworkStateEstimator() = default;
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44
45 // NOLINTEND
46};
47
48} // namespace webrtc
Definition NetworkStateEstimator.h:15
Definition NetworkRouteChange.h:7
Definition PacketResult.h:7
Definition TransportPacketsFeedback.h:12