| 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 2b7466b0fa7cfdb80f280d17b47280678a1c86d4..1d4d479fc2c5135ddce56ba3e257a8efa96dd781 100644
|
| --- a/chrome_frame/test/chrome_frame_test_utils.h
|
| +++ b/chrome_frame/test/chrome_frame_test_utils.h
|
| @@ -217,8 +217,8 @@ class TimedMsgLoop {
|
| }
|
|
|
| void PostDelayedTask(const tracked_objects::Location& from_here,
|
| - const base::Closure& task, int64 delay_ms) {
|
| - loop_.PostDelayedTask(from_here, task, delay_ms);
|
| + const base::Closure& task, base::TimeDelta delay) {
|
| + loop_.PostDelayedTask(from_here, task, delay);
|
| }
|
|
|
| void Quit() {
|
|
|