Index: gpu/command_buffer/tests/gl_shared_resources_unittest.cc |
diff --git a/gpu/command_buffer/tests/gl_shared_resources_unittest.cc b/gpu/command_buffer/tests/gl_shared_resources_unittest.cc |
index 136b57a90ec3234570c1fff7d84bddb081d5e66e..0f7ffe8b7eccc2ff52a5a4590fa7484f5e064abf 100644 |
--- a/gpu/command_buffer/tests/gl_shared_resources_unittest.cc |
+++ b/gpu/command_buffer/tests/gl_shared_resources_unittest.cc |
@@ -15,7 +15,7 @@ namespace gpu { |
class GLSharedResources : public testing::Test { |
protected: |
- virtual void SetUp() { |
+ void SetUp() override { |
GLManager::Options options; |
options.bind_generates_resource = true; |
gl1_.Initialize(options); |
@@ -23,7 +23,7 @@ class GLSharedResources : public testing::Test { |
gl2_.Initialize(options); |
} |
- virtual void TearDown() { |
+ void TearDown() override { |
gl1_.Destroy(); |
gl2_.Destroy(); |
} |