Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Unified Diff: remoting/host/it2me_host_user_interface.cc

Issue 10496002: Revert 140102 - Remove old PostDelayedTask interfaces that use int ms instead of TimeDelta. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/base/scoped_thread_proxy.cc ('k') | webkit/dom_storage/dom_storage_task_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/it2me_host_user_interface.cc
===================================================================
--- remoting/host/it2me_host_user_interface.cc (revision 140108)
+++ remoting/host/it2me_host_user_interface.cc (working copy)
@@ -30,8 +30,7 @@
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:
« no previous file with comments | « remoting/base/scoped_thread_proxy.cc ('k') | webkit/dom_storage/dom_storage_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698