| Index: gpu/command_buffer/client/gles2_implementation_unittest.cc
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_unittest.cc b/gpu/command_buffer/client/gles2_implementation_unittest.cc
|
| index 7b3ec2dbce3f7a085461ef245e32d239ba88d159..4102060bf573a2095448282112d103b4c7884477 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_unittest.cc
|
| +++ b/gpu/command_buffer/client/gles2_implementation_unittest.cc
|
| @@ -504,8 +504,8 @@ class GLES2ImplementationTest : public testing::Test {
|
|
|
| GLES2ImplementationTest() : commands_(NULL) {}
|
|
|
| - virtual void SetUp() override;
|
| - virtual void TearDown() override;
|
| + void SetUp() override;
|
| + void TearDown() override;
|
|
|
| bool NoCommandsWritten() {
|
| scoped_refptr<Buffer> ring_buffer = helper_->get_ring_buffer();
|
| @@ -628,12 +628,12 @@ void GLES2ImplementationTest::TearDown() {
|
|
|
| class GLES2ImplementationManualInitTest : public GLES2ImplementationTest {
|
| protected:
|
| - virtual void SetUp() override {}
|
| + void SetUp() override {}
|
| };
|
|
|
| class GLES2ImplementationStrictSharedTest : public GLES2ImplementationTest {
|
| protected:
|
| - virtual void SetUp() override;
|
| + void SetUp() override;
|
|
|
| template <class ResApi>
|
| void FlushGenerationTest() {
|
|
|