summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/service/context_group_unittest.cc
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-10-27 14:52:11 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-27 21:52:28 +0000
commit62e71797ea280c15fe2822cdb2d46a8f3f826f4f (patch)
tree3676ed610961929c28b3599f05f73bd4a29fa985 /gpu/command_buffer/service/context_group_unittest.cc
parent578ab408a9a10b59297b8364a50987a8dd088cdf (diff)
downloadchromium_src-62e71797ea280c15fe2822cdb2d46a8f3f826f4f.zip
chromium_src-62e71797ea280c15fe2822cdb2d46a8f3f826f4f.tar.gz
chromium_src-62e71797ea280c15fe2822cdb2d46a8f3f826f4f.tar.bz2
Standardize usage of virtual/override/final specifiers.
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=sievers@chromium.org Review URL: https://codereview.chromium.org/682743002 Cr-Commit-Position: refs/heads/master@{#301454}
Diffstat (limited to 'gpu/command_buffer/service/context_group_unittest.cc')
-rw-r--r--gpu/command_buffer/service/context_group_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/command_buffer/service/context_group_unittest.cc b/gpu/command_buffer/service/context_group_unittest.cc
index 7aa1301..13e5dc8 100644
--- a/gpu/command_buffer/service/context_group_unittest.cc
+++ b/gpu/command_buffer/service/context_group_unittest.cc
@@ -35,7 +35,7 @@ class ContextGroupTest : public GpuServiceTest {
ContextGroupTest() {}
protected:
- virtual void SetUp() {
+ void SetUp() override {
GpuServiceTest::SetUp();
decoder_.reset(new MockGLES2Decoder());
group_ = scoped_refptr<ContextGroup>(