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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/bwe.cc

Issue 1703833002: Remove ignored return code from modules. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase 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/bwe.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe.cc
index c667b6864e4638a40e3d227849f6230dab8d8930..5e282c6f087466628d542ab79c7bb0beebf9ed11 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/bwe.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/bwe.cc
@@ -67,7 +67,7 @@ class NullBweSender : public BweSender {
int64_t TimeUntilNextProcess() override {
return std::numeric_limits<int64_t>::max();
}
- int Process() override { return 0; }
+ void Process() override {}
private:
RTC_DISALLOW_COPY_AND_ASSIGN(NullBweSender);

Powered by Google App Engine
This is Rietveld 408576698