| 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 373a55237f99344eebbf210e52bdf7022ec2f378..f23affee41d454dc0479bf03a163b14d4dbe99bb 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.cc
|
| @@ -13,18 +13,14 @@
|
| namespace webrtc {
|
| namespace testing {
|
|
|
| -class TestVp8Impl
|
| - : public TestVp8Simulcast {
|
| +class TestVp8Impl : public TestVp8Simulcast {
|
| public:
|
| TestVp8Impl()
|
| - : TestVp8Simulcast(VP8Encoder::Create(), VP8Decoder::Create()) {}
|
| + : TestVp8Simulcast(VP8Encoder::Create(), VP8Decoder::Create()) {}
|
| +
|
| protected:
|
| - virtual void SetUp() {
|
| - TestVp8Simulcast::SetUp();
|
| - }
|
| - virtual void TearDown() {
|
| - TestVp8Simulcast::TearDown();
|
| - }
|
| + virtual void SetUp() { TestVp8Simulcast::SetUp(); }
|
| + virtual void TearDown() { TestVp8Simulcast::TearDown(); }
|
| };
|
|
|
| TEST_F(TestVp8Impl, TestKeyFrameRequestsOnAllStreams) {
|
|
|