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

Unified Diff: jingle/glue/thread_wrapper.cc

Issue 9159068: Convert int ms interfaces to TimeDelta in jingle/glue files. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/glue/thread_wrapper.cc
diff --git a/jingle/glue/thread_wrapper.cc b/jingle/glue/thread_wrapper.cc
index 10be381559cbfd4d97cc5e1576f0564df1f75e5e..456a61993135e068bf989e866a5bd9afe4e2ad57 100644
--- a/jingle/glue/thread_wrapper.cc
+++ b/jingle/glue/thread_wrapper.cc
@@ -216,7 +216,7 @@ void JingleThreadWrapper::PostTaskInternal(
message_loop_->PostDelayedTask(FROM_HERE,
base::Bind(&JingleThreadWrapper::RunTask,
base::Unretained(this), task_id),
- delay_ms);
+ base::TimeDelta::FromMilliseconds(delay_ms));
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698