| Index: remoting/host/it2me_host_user_interface.cc
|
| diff --git a/remoting/host/it2me_host_user_interface.cc b/remoting/host/it2me_host_user_interface.cc
|
| index c39f6d366d748c848fc9ca029d9d63df7edf4616..3edb14424089e2663bb23dae96b884d9d988b7c2 100644
|
| --- a/remoting/host/it2me_host_user_interface.cc
|
| +++ b/remoting/host/it2me_host_user_interface.cc
|
| @@ -30,7 +30,8 @@ class It2MeHostUserInterface::TimerTask {
|
| const base::Closure& task,
|
| int delay_ms)
|
| : thread_proxy_(message_loop) {
|
| - thread_proxy_.PostDelayedTask(FROM_HERE, task, delay_ms);
|
| + thread_proxy_.PostDelayedTask(
|
| + FROM_HERE, task, base::TimeDelta::FromMilliseconds(delay_ms));
|
| }
|
|
|
| private:
|
|
|