| Index: views/repeat_controller.cc
|
| diff --git a/views/repeat_controller.cc b/views/repeat_controller.cc
|
| index 37e0892d2c2db4bf6098ee978f8115aced64ce8d..bb708524cd6680f47d1013da6f829ab70996a191 100644
|
| --- a/views/repeat_controller.cc
|
| +++ b/views/repeat_controller.cc
|
| @@ -25,8 +25,8 @@ RepeatController::~RepeatController() {
|
|
|
| void RepeatController::Start() {
|
| // The first timer is slightly longer than subsequent repeats.
|
| - timer_.Start(FROM_HERE, TimeDelta::FromMilliseconds(kInitialRepeatDelay),
|
| - this, &RepeatController::Run);
|
| + timer_.Start(TimeDelta::FromMilliseconds(kInitialRepeatDelay), this,
|
| + &RepeatController::Run);
|
| }
|
|
|
| void RepeatController::Stop() {
|
| @@ -37,7 +37,7 @@ void RepeatController::Stop() {
|
| // RepeatController, private:
|
|
|
| void RepeatController::Run() {
|
| - timer_.Start(FROM_HERE, TimeDelta::FromMilliseconds(kRepeatDelay), this,
|
| + timer_.Start(TimeDelta::FromMilliseconds(kRepeatDelay), this,
|
| &RepeatController::Run);
|
| callback_->Run();
|
| }
|
|
|