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

Unified Diff: webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc

Issue 2353033005: Refactoring: move ownership of RtcEventLog from Call to PeerConnection (Closed)
Patch Set: Make TSan happy Created 4 years, 3 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/test/fuzzers/congestion_controller_feedback_fuzzer.cc
diff --git a/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc b/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc
index 6fb5f9ba1fb2bb26d831ddff8eefc9059b90f336..c0f0c2c88d373ebbed75015aa33dc7475fe3a7d9 100644
--- a/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc
+++ b/webrtc/test/fuzzers/congestion_controller_feedback_fuzzer.cc
@@ -32,8 +32,7 @@ void FuzzOneInput(const uint8_t* data, size_t size) {
return;
SimulatedClock clock(data[i++]);
NullBitrateObserver observer;
- RtcEventLogNullImpl event_log;
- CongestionController cc(&clock, &observer, &observer, &event_log);
+ CongestionController cc(&clock, &observer, &observer, nullptr);
RemoteBitrateEstimator* rbe = cc.GetRemoteBitrateEstimator(true);
RTPHeader header;
header.ssrc = ByteReader<uint32_t>::ReadBigEndian(&data[i]);

Powered by Google App Engine
This is Rietveld 408576698