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

Unified Diff: athena/test/base/activity_lifetime_tracker.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/system/time_view.h ('k') | athena/test/base/athena_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/test/base/activity_lifetime_tracker.h
diff --git a/athena/test/base/activity_lifetime_tracker.h b/athena/test/base/activity_lifetime_tracker.h
index 2c1ae165e779bcb4e3b7beb111429512c3548069..0e6c23312df043a03f847a63bbaf443fd4c6c336 100644
--- a/athena/test/base/activity_lifetime_tracker.h
+++ b/athena/test/base/activity_lifetime_tracker.h
@@ -15,13 +15,13 @@ class Activity;
class ActivityLifetimeTracker : public ActivityManagerObserver {
public:
ActivityLifetimeTracker();
- virtual ~ActivityLifetimeTracker();
+ ~ActivityLifetimeTracker() override;
// Called after an |activity| got created.
- virtual void OnActivityStarted(Activity* activity) override;
+ void OnActivityStarted(Activity* activity) override;
// Called before an |activity| gets destroyed.
- virtual void OnActivityEnding(Activity* activity) override;
+ void OnActivityEnding(Activity* activity) override;
// Returns the newly created activity (if any) and resets its reference.
Activity* GetNewActivityAndReset();
« no previous file with comments | « athena/system/time_view.h ('k') | athena/test/base/athena_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698