Lint fix for webrtc/modules/video_coding PART 1!
Trying to submit all changes at once proved impossible since there were too many changes in too many files. The changes to PRESUBMIT.py will be uploaded in the last CL. (original CL: https://codereview.webrtc.org/1528503003/) BUG=webrtc:5309 TBR=mflodman@webrtc.org Review URL: https://codereview.webrtc.org/1541803002 Cr-Commit-Position: refs/heads/master@{#11100}
This commit is contained in:
@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user