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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc

Issue 1736663004: Revert of Remove ignored return code from modules. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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/remote_bitrate_estimator/test/estimators/send_side.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc
index 36dff1fb2ac5dfc1cad01104bd83bbf4b6648f6f..c55bb1ab1194fd50ac200a2f3efb9c2b8737c645 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc
@@ -110,9 +110,9 @@
return bitrate_controller_->TimeUntilNextProcess();
}
-void FullBweSender::Process() {
+int FullBweSender::Process() {
rbe_->Process();
- bitrate_controller_->Process();
+ return bitrate_controller_->Process();
}
SendSideBweReceiver::SendSideBweReceiver(int flow_id)

Powered by Google App Engine
This is Rietveld 408576698