Index: Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHost.cpp |
=================================================================== |
--- Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHost.cpp (revision 112611) |
+++ Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHost.cpp (working copy) |
@@ -181,11 +181,11 @@ |
m_contentsTextureManager->evictAndDeleteAllTextures(allocator); |
} |
-void CCLayerTreeHost::updateAnimations(double wallClockTime) |
+void CCLayerTreeHost::updateAnimations(double monotonicFrameBeginTime) |
{ |
m_animating = true; |
- m_client->updateAnimations(wallClockTime); |
- animateLayers(monotonicallyIncreasingTime()); |
+ m_client->updateAnimations(monotonicFrameBeginTime); |
+ animateLayers(monotonicFrameBeginTime); |
m_animating = false; |
} |