summaryrefslogtreecommitdiffstats
path: root/remoting/host
diff options
context:
space:
mode:
authortedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-01 21:33:00 +0000
committertedvessenes@gmail.com <tedvessenes@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-01 21:33:00 +0000
commitbb8074e9927ffb769a3683e9aa11f899a4506fbe (patch)
tree1cea8268708d35fc7dc43a423dd60e28ed54b54d /remoting/host
parent12382874042ef4a748011b0fb482af5e91b83a03 (diff)
downloadchromium_src-bb8074e9927ffb769a3683e9aa11f899a4506fbe.zip
chromium_src-bb8074e9927ffb769a3683e9aa11f899a4506fbe.tar.gz
chromium_src-bb8074e9927ffb769a3683e9aa11f899a4506fbe.tar.bz2
Remove old PostDelayedTask interfaces that use int ms instead of TimeDelta.
BUG=108171 Review URL: https://chromiumcodereview.appspot.com/9703053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host')
-rw-r--r--remoting/host/it2me_host_user_interface.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/host/it2me_host_user_interface.cc b/remoting/host/it2me_host_user_interface.cc
index c39f6d3..3edb144 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: