| Index: gpu/config/gpu_test_expectations_parser_unittest.cc
|
| diff --git a/gpu/config/gpu_test_expectations_parser_unittest.cc b/gpu/config/gpu_test_expectations_parser_unittest.cc
|
| index 810a1a8bc0186b35c263601110e4b0f5361b18fe..b6ca529d506f16686a4f0506a77c3b6683a4efb9 100644
|
| --- a/gpu/config/gpu_test_expectations_parser_unittest.cc
|
| +++ b/gpu/config/gpu_test_expectations_parser_unittest.cc
|
| @@ -12,14 +12,14 @@ class GPUTestExpectationsParserTest : public testing::Test {
|
| public:
|
| GPUTestExpectationsParserTest() { }
|
|
|
| - virtual ~GPUTestExpectationsParserTest() { }
|
| + ~GPUTestExpectationsParserTest() override {}
|
|
|
| const GPUTestBotConfig& bot_config() const {
|
| return bot_config_;
|
| }
|
|
|
| protected:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| bot_config_.set_os(GPUTestConfig::kOsWin7);
|
| bot_config_.set_build_type(GPUTestConfig::kBuildTypeRelease);
|
| bot_config_.AddGPUVendor(0x10de);
|
| @@ -27,7 +27,7 @@ class GPUTestExpectationsParserTest : public testing::Test {
|
| ASSERT_TRUE(bot_config_.IsValid());
|
| }
|
|
|
| - virtual void TearDown() { }
|
| + void TearDown() override {}
|
|
|
| private:
|
| GPUTestBotConfig bot_config_;
|
|
|