summaryrefslogtreecommitdiffstats
path: root/media/base/run_all_unittests.cc
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-10-21 05:23:27 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-21 12:24:04 +0000
commitc24565478f64d1aa4d07e83c69d00bad11fa2665 (patch)
treeec3572cc086984ca8dcdb2c2740c1b8e163dd0b0 /media/base/run_all_unittests.cc
parent3fc12db4bdf0829f206dafbb23d411ff502d7de6 (diff)
downloadchromium_src-c24565478f64d1aa4d07e83c69d00bad11fa2665.zip
chromium_src-c24565478f64d1aa4d07e83c69d00bad11fa2665.tar.gz
chromium_src-c24565478f64d1aa4d07e83c69d00bad11fa2665.tar.bz2
Standardize usage of virtual/override/final in media/
This patch was automatically generated by applying clang fixit hints generated by the plugin to the source tree. BUG=417463 TBR=ddorwin@chromium.org Review URL: https://codereview.chromium.org/655713003 Cr-Commit-Position: refs/heads/master@{#300471}
Diffstat (limited to 'media/base/run_all_unittests.cc')
-rw-r--r--media/base/run_all_unittests.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/media/base/run_all_unittests.cc b/media/base/run_all_unittests.cc
index 927e92b..0f741c3 100644
--- a/media/base/run_all_unittests.cc
+++ b/media/base/run_all_unittests.cc
@@ -19,9 +19,10 @@
class TestSuiteNoAtExit : public base::TestSuite {
public:
TestSuiteNoAtExit(int argc, char** argv) : TestSuite(argc, argv) {}
- virtual ~TestSuiteNoAtExit() {}
+ ~TestSuiteNoAtExit() override {}
+
protected:
- virtual void Initialize() override;
+ void Initialize() override;
};
void TestSuiteNoAtExit::Initialize() {