| Index: base/timer/timer.h
|
| diff --git a/base/timer/timer.h b/base/timer/timer.h
|
| index eb943eb90545f748c43204ffb874a09db4c2e354..6d282ee8e7ac84f3d6f5757650c08be70463f9e6 100644
|
| --- a/base/timer/timer.h
|
| +++ b/base/timer/timer.h
|
| @@ -90,8 +90,8 @@ class BASE_EXPORT Timer {
|
| // Start the timer to run at the given |delay| from now. If the timer is
|
| // already running, it will be replaced to call the given |user_task|.
|
| virtual void Start(const tracked_objects::Location& posted_from,
|
| - TimeDelta delay,
|
| - const base::Closure& user_task);
|
| + TimeDelta delay,
|
| + const base::Closure& user_task);
|
|
|
| // Call this method to stop and cancel the timer. It is a no-op if the timer
|
| // is not running.
|
| @@ -197,9 +197,9 @@ class BaseTimerMethodPointer : public Timer {
|
| // already running, it will be replaced to call a task formed from
|
| // |reviewer->*method|.
|
| virtual void Start(const tracked_objects::Location& posted_from,
|
| - TimeDelta delay,
|
| - Receiver* receiver,
|
| - ReceiverMethod method) {
|
| + TimeDelta delay,
|
| + Receiver* receiver,
|
| + ReceiverMethod method) {
|
| Timer::Start(posted_from, delay,
|
| base::Bind(method, base::Unretained(receiver)));
|
| }
|
|
|