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

Unified Diff: components/metrics/daily_event_unittest.cc

Issue 666133002: Standardize usage of virtual/override/final in components/ (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
Index: components/metrics/daily_event_unittest.cc
diff --git a/components/metrics/daily_event_unittest.cc b/components/metrics/daily_event_unittest.cc
index a43b60b4bed7d1c4b96b2b50e7ed8ac3e122142d..d15def116cd5391f4e37f450957909064ce2710e 100644
--- a/components/metrics/daily_event_unittest.cc
+++ b/components/metrics/daily_event_unittest.cc
@@ -20,9 +20,7 @@ class TestDailyObserver : public DailyEvent::Observer {
bool fired() const { return fired_; }
- virtual void OnDailyEvent() override {
- fired_ = true;
- }
+ void OnDailyEvent() override { fired_ = true; }
void Reset() {
fired_ = false;

Powered by Google App Engine
This is Rietveld 408576698