| Index: content/common/gpu/client/gl_helper_unittest.cc
|
| diff --git a/content/common/gpu/client/gl_helper_unittest.cc b/content/common/gpu/client/gl_helper_unittest.cc
|
| index b86716614ed25c6d68d67d3084ee39b07a7469f7..47e2edf3956c8da2209c73ab217f40fdf3f83861 100644
|
| --- a/content/common/gpu/client/gl_helper_unittest.cc
|
| +++ b/content/common/gpu/client/gl_helper_unittest.cc
|
| @@ -53,7 +53,7 @@ const char* kQualityNames[] = {"best", "good", "fast", };
|
|
|
| class GLHelperTest : public testing::Test {
|
| protected:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| WebGraphicsContext3D::Attributes attributes;
|
| bool lose_context_when_out_of_memory = false;
|
| context_ =
|
| @@ -67,7 +67,7 @@ class GLHelperTest : public testing::Test {
|
| context_->GetGLInterface(), helper_.get()));
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| helper_scaling_.reset(NULL);
|
| helper_.reset(NULL);
|
| context_.reset(NULL);
|
|
|