Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Unified Diff: webrtc/modules/congestion_controller/congestion_controller.cc

Issue 2638083002: Attach TransportFeedbackPacketLossTracker to ANA (PLR only) (Closed)
Patch Set: Fix UT Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/congestion_controller/congestion_controller.cc
diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc
index fd0d070ba0350c0801f0dbba3251225c8d623e38..81a4517984f73e8178ea7e379eeaff9791f5bedb 100644
--- a/webrtc/modules/congestion_controller/congestion_controller.cc
+++ b/webrtc/modules/congestion_controller/congestion_controller.cc
@@ -254,6 +254,18 @@ CongestionController::GetTransportFeedbackObserver() {
return &transport_feedback_adapter_;
}
+void CongestionController::RegisterTransportFeedbackAdapterObserver(
+ TransportFeedbackAdapterObserver* observer) {
+ transport_feedback_adapter_.RegisterTransportFeedbackAdapterObserver(
+ observer);
+}
+
+void CongestionController::DeRegisterTransportFeedbackAdapterObserver(
+ TransportFeedbackAdapterObserver* observer) {
+ transport_feedback_adapter_.DeRegisterTransportFeedbackAdapterObserver(
+ observer);
+}
+
RateLimiter* CongestionController::GetRetransmissionRateLimiter() {
return retransmission_rate_limiter_.get();
}

Powered by Google App Engine
This is Rietveld 408576698