Chromium Code Reviews| Index: webrtc/modules/bitrate_controller/include/bitrate_controller.h |
| diff --git a/webrtc/modules/bitrate_controller/include/bitrate_controller.h b/webrtc/modules/bitrate_controller/include/bitrate_controller.h |
| index a9c247acf179df5b7e087a286bfd98d31caec40b..b2970eca0e638253c890f0b5bfd65d73c380f5e5 100644 |
| --- a/webrtc/modules/bitrate_controller/include/bitrate_controller.h |
| +++ b/webrtc/modules/bitrate_controller/include/bitrate_controller.h |
| @@ -49,7 +49,8 @@ class BitrateController : public Module { |
| static const int kDefaultStartBitrateKbps = 300; |
| static BitrateController* CreateBitrateController(Clock* clock, |
| - BitrateObserver* observer); |
| + BitrateObserver* observer, |
| + RtcEventLog* event_log); |
|
stefan-webrtc
2016/03/11 10:11:53
I think you'll want to keep the old Create method
ivoc
2016/03/16 17:00:32
Done.
|
| virtual ~BitrateController() {} |
| virtual RtcpBandwidthObserver* CreateRtcpBandwidthObserver() = 0; |
| @@ -59,8 +60,6 @@ class BitrateController : public Module { |
| virtual void UpdateDelayBasedEstimate(uint32_t bitrate_bps) = 0; |
| - virtual void SetEventLog(RtcEventLog* event_log) = 0; |
| - |
| // Gets the available payload bandwidth in bits per second. Note that |
| // this bandwidth excludes packet headers. |
| virtual bool AvailableBandwidth(uint32_t* bandwidth) const = 0; |