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:
philipel
2015-12-21 03:04:49 -08:00
committed by Commit bot
parent 53805324c0
commit cce46fc108
44 changed files with 1191 additions and 1387 deletions

View File

@ -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_;
};