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

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

Issue 1737013002: Reland of move 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 c55bb1ab1194fd50ac200a2f3efb9c2b8737c645..36dff1fb2ac5dfc1cad01104bd83bbf4b6648f6f 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();
}
-int FullBweSender::Process() {
+void FullBweSender::Process() {
rbe_->Process();
- return bitrate_controller_->Process();
+ bitrate_controller_->Process();
}
SendSideBweReceiver::SendSideBweReceiver(int flow_id)

Powered by Google App Engine
This is Rietveld 408576698