Chromium Code Reviews

Unified Diff: webrtc/modules/congestion_controller/include/congestion_controller.h

Issue 2638083002: Attach TransportFeedbackPacketLossTracker to ANA (PLR only) (Closed)
Patch Set: Rebased Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/modules/congestion_controller/include/congestion_controller.h
diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h
index 500966b7c1ab0fc7a0fc475a9c98f8a959d3df86..47eab921274a4a771fc11d8443846acc3199db7e 100644
--- a/webrtc/modules/congestion_controller/include/congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -92,6 +92,10 @@ class CongestionController : public CallStatsObserver, public Module {
// internal to the congestion controller.
virtual PacedSender* pacer() { return pacer_.get(); }
virtual TransportFeedbackObserver* GetTransportFeedbackObserver();
+ void RegisterTransportFeedbackAdapterObserver(
+ TransportFeedbackAdapterObserver* observer);
+ void DeRegisterTransportFeedbackAdapterObserver(
+ TransportFeedbackAdapterObserver* observer);
RateLimiter* GetRetransmissionRateLimiter();
void EnablePeriodicAlrProbing(bool enable);

Powered by Google App Engine