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

Unified Diff: gpu/command_buffer/common/gles2_cmd_format_test.cc

Issue 682743002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: gpu/command_buffer/common/gles2_cmd_format_test.cc
diff --git a/gpu/command_buffer/common/gles2_cmd_format_test.cc b/gpu/command_buffer/common/gles2_cmd_format_test.cc
index 717e6fb20305124359d8e12281d2b0d6f8f97a44..ea683a668eb5fa94f07423a712c71cc37724e424 100644
--- a/gpu/command_buffer/common/gles2_cmd_format_test.cc
+++ b/gpu/command_buffer/common/gles2_cmd_format_test.cc
@@ -19,12 +19,9 @@ class GLES2FormatTest : public testing::Test {
protected:
static const unsigned char kInitialValue = 0xBD;
- virtual void SetUp() {
- memset(buffer_, kInitialValue, sizeof(buffer_));
- }
+ void SetUp() override { memset(buffer_, kInitialValue, sizeof(buffer_)); }
- virtual void TearDown() {
- }
+ void TearDown() override {}
template <typename T>
T* GetBufferAs() {
« no previous file with comments | « gpu/command_buffer/common/debug_marker_manager_unittest.cc ('k') | gpu/command_buffer/common/id_allocator_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698