| Index: webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc
|
| diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc
|
| index 9d919cdd5bdc544746530326b25169f7efda8a01..1120fe07e49c1e25be28b479221fd4666b30998e 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc
|
| @@ -8,19 +8,15 @@
|
| * be found in the AUTHORS file in the root of the source tree.
|
| */
|
|
|
| -#include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h"
|
| +#include "webrtc/modules/video_coding/codecs/vp8/simulcast_test_utility.h"
|
|
|
| namespace webrtc {
|
| namespace testing {
|
|
|
| class TestVp8Impl : public TestVp8Simulcast {
|
| - public:
|
| - TestVp8Impl()
|
| - : TestVp8Simulcast(VP8Encoder::Create(), VP8Decoder::Create()) {}
|
| -
|
| protected:
|
| - virtual void SetUp() { TestVp8Simulcast::SetUp(); }
|
| - virtual void TearDown() { TestVp8Simulcast::TearDown(); }
|
| + VP8Encoder* CreateEncoder() override { return VP8Encoder::Create(); }
|
| + VP8Decoder* CreateDecoder() override { return VP8Decoder::Create(); }
|
| };
|
|
|
| TEST_F(TestVp8Impl, TestKeyFrameRequestsOnAllStreams) {
|
|
|