Index: gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc |
diff --git a/gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc b/gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc |
index d03b121fe2199a65956171484bf86cc760aa444a..2c44e1a3562cee3fbef869027aac3d5bf8eb8c13 100644 |
--- a/gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc |
+++ b/gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc |
@@ -20,7 +20,7 @@ namespace gpu { |
// A collection of tests that exercise the GL_CHROMIUM_copy_texture extension. |
class GLCopyTextureCHROMIUMTest : public testing::Test { |
protected: |
- virtual void SetUp() { |
+ void SetUp() override { |
gl_.Initialize(GLManager::Options()); |
glGenTextures(2, textures_); |
@@ -39,7 +39,7 @@ class GLCopyTextureCHROMIUMTest : public testing::Test { |
textures_[1], 0); |
} |
- virtual void TearDown() { |
+ void TearDown() override { |
glDeleteTextures(2, textures_); |
glDeleteFramebuffers(1, &framebuffer_id_); |
gl_.Destroy(); |