| Index: content/renderer/renderer_blink_platform_impl.cc
|
| diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc
|
| index 922390fa4fd607895bc7a43664df2655b123b29a..37caab416861321639d13eab0decee49e9647bec 100644
|
| --- a/content/renderer/renderer_blink_platform_impl.cc
|
| +++ b/content/renderer/renderer_blink_platform_impl.cc
|
| @@ -288,11 +288,13 @@ void RendererBlinkPlatformImpl::Shutdown() {
|
| //------------------------------------------------------------------------------
|
|
|
| double RendererBlinkPlatformImpl::currentTimeSeconds() {
|
| - return renderer_scheduler_->CurrentTimeSeconds();
|
| + // TODO(alexclarke): Change the way this is plumbed through to blink.
|
| + return renderer_scheduler_->VirtualTimeSeconds();
|
| }
|
|
|
| double RendererBlinkPlatformImpl::monotonicallyIncreasingTimeSeconds() {
|
| - return renderer_scheduler_->MonotonicallyIncreasingTimeSeconds();
|
| + // TODO(alexclarke): Change the way this is plumbed through to blink.
|
| + return renderer_scheduler_->MonotonicallyIncreasingVirtualTimeSeconds();
|
| }
|
|
|
| //------------------------------------------------------------------------------
|
|
|