| 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();
|
|
|