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

Unified Diff: athena/resource_manager/resource_manager_unittest.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/resource_manager/resource_manager_impl.cc ('k') | athena/screen/modal_window_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/resource_manager/resource_manager_unittest.cc
diff --git a/athena/resource_manager/resource_manager_unittest.cc b/athena/resource_manager/resource_manager_unittest.cc
index ecc55323d930f652ec5dcf94968bd29dcc0ab9ea..bbb7595cbe08b4f0c104654fde892e6a9cf54ef7 100644
--- a/athena/resource_manager/resource_manager_unittest.cc
+++ b/athena/resource_manager/resource_manager_unittest.cc
@@ -27,7 +27,7 @@ class TestActivity : public SampleActivity {
: SampleActivity(0, 0, base::UTF8ToUTF16(title)),
media_state_(ACTIVITY_MEDIA_STATE_NONE),
is_visible_(false) {}
- virtual ~TestActivity() {}
+ ~TestActivity() override {}
void set_media_state(ActivityMediaState media_state) {
media_state_ = media_state;
@@ -54,7 +54,7 @@ class TestActivity : public SampleActivity {
class ResourceManagerTest : public AthenaTestBase {
public:
ResourceManagerTest() {}
- virtual ~ResourceManagerTest() {}
+ ~ResourceManagerTest() override {}
virtual void SetUp() override {
AthenaTestBase::SetUp();
« no previous file with comments | « athena/resource_manager/resource_manager_impl.cc ('k') | athena/screen/modal_window_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698