| Index: gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc
|
| diff --git a/gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc b/gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc
|
| index 17cfa9f3d9a15c604f9ff3e34d42eb67582cb533..9373c385086a2fe13b29aad627b11ca2cfe30eb6 100644
|
| --- a/gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc
|
| +++ b/gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc
|
| @@ -26,7 +26,7 @@ class GLVirtualContextsTest : public testing::Test {
|
| static const uint8 kExpectedRed[4];
|
| static const uint8 kExpectedGreen[4];
|
|
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| GLManager::Options options;
|
| options.size = gfx::Size(kSize0, kSize0);
|
| gl_real_.Initialize(options);
|
| @@ -38,7 +38,7 @@ class GLVirtualContextsTest : public testing::Test {
|
| gl2_.Initialize(options);
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| gl1_.Destroy();
|
| gl2_.Destroy();
|
| gl_real_shared_.Destroy();
|
|
|