diff options
Diffstat (limited to 'remoting/host')
-rw-r--r-- | remoting/host/it2me_host_user_interface.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/remoting/host/it2me_host_user_interface.cc b/remoting/host/it2me_host_user_interface.cc index 3edb144..c39f6d3 100644 --- a/remoting/host/it2me_host_user_interface.cc +++ b/remoting/host/it2me_host_user_interface.cc @@ -30,8 +30,7 @@ class It2MeHostUserInterface::TimerTask { const base::Closure& task, int delay_ms) : thread_proxy_(message_loop) { - thread_proxy_.PostDelayedTask( - FROM_HERE, task, base::TimeDelta::FromMilliseconds(delay_ms)); + thread_proxy_.PostDelayedTask(FROM_HERE, task, delay_ms); } private: |