Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1571)

Unified Diff: content/common/gpu/client/gpu_in_process_context_tests.cc

Issue 686523002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « content/common/gpu/client/gl_helper_unittest.cc ('k') | content/common/gpu/gpu_memory_buffer_factory_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698