| Index: content/test/mock_render_thread.cc
|
| diff --git a/content/test/mock_render_thread.cc b/content/test/mock_render_thread.cc
|
| index 3d9e3951a1dbdf9f012075ebb261f1833db2cb4e..eca409e1e333fb699a7567b90bed5ab8a3a53f8d 100644
|
| --- a/content/test/mock_render_thread.cc
|
| +++ b/content/test/mock_render_thread.cc
|
| @@ -127,18 +127,18 @@ bool MockRenderThread::IsRegisteredExtension(
|
| return false;
|
| }
|
|
|
| -void MockRenderThread::ScheduleIdleHandler(double initial_delay_s) {
|
| +void MockRenderThread::ScheduleIdleHandler(int64 initial_delay_ms) {
|
| }
|
|
|
| void MockRenderThread::IdleHandler() {
|
| }
|
|
|
| -double MockRenderThread::GetIdleNotificationDelayInS() const {
|
| - return 0.0;
|
| +int64 MockRenderThread::GetIdleNotificationDelayInMs() const {
|
| + return 0;
|
| }
|
|
|
| -void MockRenderThread::SetIdleNotificationDelayInS(
|
| - double idle_notification_delay_in_s) {
|
| +void MockRenderThread::SetIdleNotificationDelayInMs(
|
| + int64 idle_notification_delay_in_ms) {
|
| }
|
|
|
| #if defined(OS_WIN)
|
|
|