Removed old and unused WebRTC-NewVideoJitterBuffer field trial from VideoReceiveStreamTest.

Bug: none
Change-Id: Ide15295feb8ebba71a11ac083f8ca84902c4d24c
Reviewed-on: https://webrtc-review.googlesource.com/98560
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Philip Eliasson <philipel@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24619}
This commit is contained in:
philipel
2018-09-06 14:55:26 +02:00
committed by Commit Bot
parent fa5ec8d20d
commit 6ad6e1f04c

View File

@ -34,9 +34,6 @@ using testing::Invoke;
constexpr int kDefaultTimeOutMs = 50;
const char kNewJitterBufferFieldTrialEnabled[] =
"WebRTC-NewVideoJitterBuffer/Enabled/";
class MockTransport : public Transport {
public:
MOCK_METHOD3(SendRtp,
@ -67,7 +64,6 @@ class VideoReceiveStreamTest : public testing::Test {
public:
VideoReceiveStreamTest()
: process_thread_(ProcessThread::Create("TestThread")),
override_field_trials_(kNewJitterBufferFieldTrialEnabled),
config_(&mock_transport_),
call_stats_(Clock::GetRealTimeClock(), process_thread_.get()) {}
@ -96,7 +92,6 @@ class VideoReceiveStreamTest : public testing::Test {
protected:
std::unique_ptr<ProcessThread> process_thread_;
webrtc::test::ScopedFieldTrials override_field_trials_;
VideoReceiveStream::Config config_;
CallStats call_stats_;
MockVideoDecoder mock_h264_video_decoder_;