| Index: gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
|
| diff --git a/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc b/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
|
| index 745ceb9bb8781367247be3876ad85dcd5264ba0a..8430dfb9eb45fe84585d2a144dc2ece65c9e8362 100644
|
| --- a/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
|
| +++ b/gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc
|
| @@ -37,7 +37,7 @@ static const int kImageBytesPerPixel = 4;
|
|
|
| class GpuMemoryBufferTest : public testing::Test {
|
| protected:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| gl_.Initialize(GLManager::Options());
|
| gl_.MakeCurrent();
|
|
|
| @@ -58,7 +58,7 @@ class GpuMemoryBufferTest : public testing::Test {
|
| 0);
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| glDeleteTextures(2, texture_ids_);
|
| glDeleteFramebuffers(1, &framebuffer_id_);
|
|
|
|
|