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

Unified Diff: base/timer/mock_timer.h

Issue 614103004: replace 'virtual ... OVERRIDE' with '... override' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: process base/ Created 6 years, 3 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: base/timer/mock_timer.h
diff --git a/base/timer/mock_timer.h b/base/timer/mock_timer.h
index 456cb5be90b65b4e37dc837d5940f018f442890b..12cac5914c79e5e175ce3bb410702bdf6930b343 100644
--- a/base/timer/mock_timer.h
+++ b/base/timer/mock_timer.h
@@ -19,13 +19,13 @@ class BASE_EXPORT MockTimer : public Timer {
virtual ~MockTimer();
// base::Timer implementation.
- virtual bool IsRunning() const OVERRIDE;
- virtual base::TimeDelta GetCurrentDelay() const OVERRIDE;
- virtual void Start(const tracked_objects::Location& posted_from,
- base::TimeDelta delay,
- const base::Closure& user_task) OVERRIDE;
- virtual void Stop() OVERRIDE;
- virtual void Reset() OVERRIDE;
+ bool IsRunning() const override;
+ base::TimeDelta GetCurrentDelay() const override;
+ void Start(const tracked_objects::Location& posted_from,
+ base::TimeDelta delay,
+ const base::Closure& user_task) override;
+ void Stop() override;
+ void Reset() override;
// Testing methods.
void Fire();

Powered by Google App Engine
This is Rietveld 408576698