diff options
author | mostynb <mostynb@opera.com> | 2014-10-07 10:59:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 17:59:25 +0000 |
commit | 9e096de10e6fdcafde67df469ed9a6b8b156dfb1 (patch) | |
tree | 301e744a7e3e865e32a6fd0a779c115e926b7fd6 /base/test/gtest_xml_util.h | |
parent | 35d1d3a0d525595304fc8333373ddb660bd649cc (diff) | |
download | chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.zip chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.tar.gz chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.tar.bz2 |
replace OVERRIDE and FINAL with override and final in base/
BUG=417463
Review URL: https://codereview.chromium.org/611153004
Cr-Commit-Position: refs/heads/master@{#298520}
Diffstat (limited to 'base/test/gtest_xml_util.h')
-rw-r--r-- | base/test/gtest_xml_util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/test/gtest_xml_util.h b/base/test/gtest_xml_util.h index 79527e5..f832cde 100644 --- a/base/test/gtest_xml_util.h +++ b/base/test/gtest_xml_util.h @@ -28,10 +28,10 @@ class XmlUnitTestResultPrinter : public testing::EmptyTestEventListener { private: // testing::EmptyTestEventListener: - virtual void OnTestCaseStart(const testing::TestCase& test_case) OVERRIDE; - virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE; - virtual void OnTestEnd(const testing::TestInfo& test_info) OVERRIDE; - virtual void OnTestCaseEnd(const testing::TestCase& test_case) OVERRIDE; + virtual void OnTestCaseStart(const testing::TestCase& test_case) override; + virtual void OnTestStart(const testing::TestInfo& test_info) override; + virtual void OnTestEnd(const testing::TestInfo& test_info) override; + virtual void OnTestCaseEnd(const testing::TestCase& test_case) override; FILE* output_file_; |