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

Unified Diff: ash/test/ash_test_base.h

Issue 683623002: 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 | « no previous file | ash/test/ash_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/ash_test_base.h
diff --git a/ash/test/ash_test_base.h b/ash/test/ash_test_base.h
index 6b5b057985032d36af158b58253c40fcf1940cd9..875013b6520d489e06ae2479fff8f5ca16718ad8 100644
--- a/ash/test/ash_test_base.h
+++ b/ash/test/ash_test_base.h
@@ -50,11 +50,11 @@ class TestMetroViewerProcessHost;
class AshTestBase : public testing::Test {
public:
AshTestBase();
- virtual ~AshTestBase();
+ ~AshTestBase() override;
// testing::Test:
- virtual void SetUp() override;
- virtual void TearDown() override;
+ void SetUp() override;
+ void TearDown() override;
// Update the display configuration as given in |display_specs|.
// See ash::test::DisplayManagerTestApi::UpdateDisplay for more details.
@@ -151,7 +151,7 @@ class NoSessionAshTestBase : public AshTestBase {
NoSessionAshTestBase() {
set_start_session(false);
}
- virtual ~NoSessionAshTestBase() {}
+ ~NoSessionAshTestBase() override {}
private:
DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase);
« no previous file with comments | « no previous file | ash/test/ash_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698