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

Unified Diff: athena/test/base/athena_test_base.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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 | « athena/test/base/activity_lifetime_tracker.h ('k') | athena/test/base/athena_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/test/base/athena_test_base.h
diff --git a/athena/test/base/athena_test_base.h b/athena/test/base/athena_test_base.h
index f1abab01e8c8f74e5817162dbf67ecf93e8b8150..f0bf10b0740b369cdff0944a2a0debcd01c7bd1a 100644
--- a/athena/test/base/athena_test_base.h
+++ b/athena/test/base/athena_test_base.h
@@ -22,11 +22,11 @@ namespace test {
class AthenaTestBase : public testing::Test {
public:
AthenaTestBase();
- virtual ~AthenaTestBase();
+ ~AthenaTestBase() override;
// testing::Test:
- virtual void SetUp() override;
- virtual void TearDown() override;
+ void SetUp() override;
+ void TearDown() override;
protected:
void RunAllPendingInMessageLoop();
« no previous file with comments | « athena/test/base/activity_lifetime_tracker.h ('k') | athena/test/base/athena_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698