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

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

Issue 2518923003: Pass time constant to bwe smoothing filter. (Closed)
Patch Set: Add probing_interval_ms to NullBitrateObserver. Created 4 years, 1 month 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/mock/mock_congestion_controller.h
diff --git a/webrtc/modules/congestion_controller/include/mock/mock_congestion_controller.h b/webrtc/modules/congestion_controller/include/mock/mock_congestion_controller.h
index 128d64ea983273f5234ce9b900fc3d0decdaf74e..9fb422634d01ee23283556c2f408d3448f7b0ad7 100644
--- a/webrtc/modules/congestion_controller/include/mock/mock_congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/mock/mock_congestion_controller.h
@@ -21,10 +21,11 @@ namespace test {
class MockCongestionObserver : public CongestionController::Observer {
public:
- MOCK_METHOD3(OnNetworkChanged,
+ MOCK_METHOD4(OnNetworkChanged,
void(uint32_t bitrate_bps,
uint8_t fraction_loss,
- int64_t rtt_ms));
+ int64_t rtt_ms,
+ int64_t probing_interval_ms));
};
class MockCongestionController : public CongestionController {

Powered by Google App Engine
This is Rietveld 408576698