Chromium Code Reviews| 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 8663489d54903d2b33c42baf5e72f20ee22f6ee7..95b538d6a259bc03c6c8648ccbb979f6a4e45f34 100644 |
| --- a/webrtc/modules/congestion_controller/include/congestion_controller.h |
| +++ b/webrtc/modules/congestion_controller/include/congestion_controller.h |
| @@ -48,7 +48,8 @@ class CongestionController : public CallStatsObserver, public Module { |
| public: |
| virtual void OnNetworkChanged(uint32_t bitrate_bps, |
| uint8_t fraction_loss, // 0 - 255. |
| - int64_t rtt_ms) = 0; |
| + int64_t rtt_ms, |
| + int probing_interval_ms) = 0; |
|
the sun
2016/11/23 09:12:34
I suppose there is good reason for it, but it is a
michaelt
2016/11/23 12:28:29
The only reason I had to choose int was that I exp
|
| protected: |
| virtual ~Observer() {} |