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

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

Issue 2580843002: Change return type of CongestionController::pacer() method.
Patch Set: Revert addition of CongestionController::pacer_thread_. 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
« no previous file with comments | « no previous file | webrtc/video/rtp_stream_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1fcb03dd57f0fd74ed6dca6ceac644a82c336bc9..fa44a9b974fedba5cf31a9660f9345e70ec7a0df 100644
--- a/webrtc/modules/congestion_controller/include/congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -87,9 +87,9 @@ class CongestionController : public CallStatsObserver, public Module {
virtual RemoteBitrateEstimator* GetRemoteBitrateEstimator(
bool send_side_bwe);
virtual int64_t GetPacerQueuingDelayMs() const;
- // TODO(nisse): Delete this accessor function. The pacer should be
- // internal to the congestion controller.
- virtual PacedSender* pacer() { return pacer_.get(); }
+ // TODO(nisse): Rename or delete this accessor function. The pacer
+ // should be internal to the congestion controller.
+ virtual RtpPacketSender* pacer() { return pacer_.get(); }
virtual TransportFeedbackObserver* GetTransportFeedbackObserver();
RateLimiter* GetRetransmissionRateLimiter();
void EnablePeriodicAlrProbing(bool enable);
« no previous file with comments | « no previous file | webrtc/video/rtp_stream_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698