| Index: content/common/gpu/client/gpu_in_process_context_tests.cc
|
| diff --git a/content/common/gpu/client/gpu_in_process_context_tests.cc b/content/common/gpu/client/gpu_in_process_context_tests.cc
|
| index 4b7f9141595dceb23c9a20910e3e03b725bc0049..3e134f5adf7759d1d8cfe88e271e612e2b96dd36 100644
|
| --- a/content/common/gpu/client/gpu_in_process_context_tests.cc
|
| +++ b/content/common/gpu/client/gpu_in_process_context_tests.cc
|
| @@ -18,7 +18,7 @@ using webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl;
|
|
|
| class ContextTestBase : public testing::Test {
|
| public:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| blink::WebGraphicsContext3D::Attributes attributes;
|
| bool lose_context_when_out_of_memory = false;
|
| typedef WebGraphicsContext3DInProcessCommandBufferImpl WGC3DIPCBI;
|
| @@ -28,9 +28,7 @@ class ContextTestBase : public testing::Test {
|
| context_support_ = context_->GetContextSupport();
|
| }
|
|
|
| - virtual void TearDown() {
|
| - context_.reset(NULL);
|
| - }
|
| + void TearDown() override { context_.reset(NULL); }
|
|
|
| protected:
|
| scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context_;
|
|
|