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

Unified Diff: remoting/base/resources_unittest.cc

Issue 660803004: 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
« no previous file with comments | « remoting/base/compound_buffer_unittest.cc ('k') | remoting/client/audio_player_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/resources_unittest.cc
diff --git a/remoting/base/resources_unittest.cc b/remoting/base/resources_unittest.cc
index 65b4468a37ff35128075d355a1dc9d3a9e13f4e7..a684b2c089a556a736f4c44174fbe12f35884675 100644
--- a/remoting/base/resources_unittest.cc
+++ b/remoting/base/resources_unittest.cc
@@ -15,13 +15,9 @@ class ResourcesTest : public testing::Test {
ResourcesTest(): resources_available_(false) {
}
- virtual void SetUp() override {
- resources_available_ = LoadResources("en-US");
- }
+ void SetUp() override { resources_available_ = LoadResources("en-US"); }
- virtual void TearDown() override {
- UnloadResources();
- }
+ void TearDown() override { UnloadResources(); }
bool resources_available_;
};
« no previous file with comments | « remoting/base/compound_buffer_unittest.cc ('k') | remoting/client/audio_player_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698