Chromium Code Reviews| Index: chrome_frame/test/chrome_frame_test_utils.h |
| diff --git a/chrome_frame/test/chrome_frame_test_utils.h b/chrome_frame/test/chrome_frame_test_utils.h |
| index 89111887a0fa8f90fff64cf53f6c3799283ac552..c6edbbb11def6e52a442791261c5971f31a2a2f3 100644 |
| --- a/chrome_frame/test/chrome_frame_test_utils.h |
| +++ b/chrome_frame/test/chrome_frame_test_utils.h |
| @@ -205,7 +205,8 @@ class TimedMsgLoop { |
| void PostDelayedTask(const tracked_objects::Location& from_here, |
| const base::Closure& task, int64 delay_ms) { |
|
robertshield
2012/04/18 02:23:09
IMO for consistency, should modify this method to
|
| - loop_.PostDelayedTask(from_here, task, delay_ms); |
| + loop_.PostDelayedTask( |
| + from_here, task, base::TimeDelta::FromMilliseconds(delay_ms)); |
| } |
| void Quit() { |