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

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

Issue 2834663003: Allow mocking SendSideCongestionController for Call tests. (Closed)
Patch Set: Add MockSendSideCongestionController constructor Created 3 years, 8 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/include/send_side_congestion_controller.h
diff --git a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
index 66bcb314d2665760ac4d7b660dcbcc2e467ffef4..41ee3be612d2d388260cf415c5dcdf9697b775fe 100644
--- a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h
@@ -57,13 +57,10 @@ class SendSideCongestionController : public CallStatsObserver,
protected:
virtual ~Observer() {}
};
- // TODO(nisse): Consider deleting the |observer| argument to constructors.
nisse-webrtc 2017/04/26 07:37:14 I'm afraid this has to wait until the old Congesti
Zach Stein 2017/04/26 20:39:53 I'll see what I can get working without this chang
SendSideCongestionController(const Clock* clock,
- Observer* observer,
RtcEventLog* event_log,
PacketRouter* packet_router);
SendSideCongestionController(const Clock* clock,
- Observer* observer,
RtcEventLog* event_log,
std::unique_ptr<PacedSender> pacer);
virtual ~SendSideCongestionController();

Powered by Google App Engine
This is Rietveld 408576698