diff options
Diffstat (limited to 'third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp')
-rw-r--r-- | third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp index eefb444..bbb2640 100644 --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp @@ -1128,6 +1128,11 @@ void GraphicsLayer::removeAnimation(int animationId) platformLayer()->removeAnimation(animationId); } +void GraphicsLayer::abortAnimation(int animationId) +{ + platformLayer()->abortAnimation(animationId); +} + WebLayer* GraphicsLayer::platformLayer() const { return m_layer->layer(); |