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:
@ -16,21 +16,15 @@
|
||||
namespace webrtc {
|
||||
namespace test {
|
||||
|
||||
class StatsTest: public testing::Test {
|
||||
class StatsTest : public testing::Test {
|
||||
protected:
|
||||
StatsTest() {
|
||||
}
|
||||
StatsTest() {}
|
||||
|
||||
virtual ~StatsTest() {
|
||||
}
|
||||
virtual ~StatsTest() {}
|
||||
|
||||
void SetUp() {
|
||||
stats_ = new Stats();
|
||||
}
|
||||
void SetUp() { stats_ = new Stats(); }
|
||||
|
||||
void TearDown() {
|
||||
delete stats_;
|
||||
}
|
||||
void TearDown() { delete stats_; }
|
||||
|
||||
Stats* stats_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user