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

Unified Diff: athena/test/base/athena_unittests.cc

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/athena_test_base.h ('k') | athena/test/base/sample_activity.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/test/base/athena_unittests.cc
diff --git a/athena/test/base/athena_unittests.cc b/athena/test/base/athena_unittests.cc
index 1da8ed5c9ba590c1e803607d5ae01454919aec45..f106c2721fc55b6b4cbf0a89bc242cd108f507c0 100644
--- a/athena/test/base/athena_unittests.cc
+++ b/athena/test/base/athena_unittests.cc
@@ -19,11 +19,11 @@ namespace {
class AthenaTestSuite : public base::TestSuite {
public:
AthenaTestSuite(int argc, char** argv) : TestSuite(argc, argv) {}
- virtual ~AthenaTestSuite() {}
+ ~AthenaTestSuite() override {}
protected:
// base::TestSuite:
- virtual void Initialize() override {
+ void Initialize() override {
base::TestSuite::Initialize();
gfx::GLSurface::InitializeOneOffForTests();
gfx::RegisterPathProvider();
@@ -34,7 +34,7 @@ class AthenaTestSuite : public base::TestSuite {
test_pak_path = test_pak_path.AppendASCII("athena_resources.pak");
ui::ResourceBundle::InitSharedInstanceWithPakPath(test_pak_path);
}
- virtual void Shutdown() override {
+ void Shutdown() override {
ui::ResourceBundle::CleanupSharedInstance();
base::TestSuite::Shutdown();
}
« no previous file with comments | « athena/test/base/athena_test_base.h ('k') | athena/test/base/sample_activity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698