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

Unified Diff: chrome/browser/about_flags_unittest.cc

Issue 684613002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad indent 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 | « no previous file | chrome/browser/apps/custom_launcher_page_browsertest_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/about_flags_unittest.cc
diff --git a/chrome/browser/about_flags_unittest.cc b/chrome/browser/about_flags_unittest.cc
index 600e389571cdb6364960dfa057e60e7259638f39..32fb1ded9a41e528fe855b7147a66646257946e9 100644
--- a/chrome/browser/about_flags_unittest.cc
+++ b/chrome/browser/about_flags_unittest.cc
@@ -292,7 +292,7 @@ class AboutFlagsTest : public ::testing::Test {
testing::ClearState();
}
- virtual void SetUp() override {
+ void SetUp() override {
for (size_t i = 0; i < arraysize(kExperiments); ++i)
kExperiments[i].supported_platforms = GetCurrentPlatform();
@@ -304,9 +304,7 @@ class AboutFlagsTest : public ::testing::Test {
testing::SetExperiments(kExperiments, arraysize(kExperiments));
}
- virtual void TearDown() override {
- testing::SetExperiments(NULL, 0);
- }
+ void TearDown() override { testing::SetExperiments(NULL, 0); }
TestingPrefServiceSimple prefs_;
PrefServiceFlagsStorage flags_storage_;
« no previous file with comments | « no previous file | chrome/browser/apps/custom_launcher_page_browsertest_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698