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

Unified Diff: webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc

Issue 2580733004: Remove OverUseDetectorOptions from OveruseDetector since it isn't used. (Closed)
Patch Set: Update comment Created 4 years 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/overuse_detector_unittest.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
index 576e2536213f24f4f7a5e0fa23c15df15b991f76..fb5d4e79390ddd3ff0cd30e22d99525b05db59f5 100644
--- a/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
+++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
@@ -42,7 +42,7 @@ class OveruseDetectorTest : public ::testing::Test {
protected:
void SetUp() override {
- overuse_detector_.reset(new OveruseDetector(options_));
+ overuse_detector_.reset(new OveruseDetector());
}
int Run100000Samples(int packets_per_frame, size_t packet_size, int mean_ms,
@@ -649,7 +649,7 @@ class OveruseDetectorExperimentTest : public OveruseDetectorTest {
protected:
void SetUp() override {
- overuse_detector_.reset(new OveruseDetector(options_));
+ overuse_detector_.reset(new OveruseDetector());
}
test::ScopedFieldTrials override_field_trials_;

Powered by Google App Engine
This is Rietveld 408576698