diff options
Diffstat (limited to 'cc/blink/web_compositor_animation_player_impl.cc')
-rw-r--r-- | cc/blink/web_compositor_animation_player_impl.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cc/blink/web_compositor_animation_player_impl.cc b/cc/blink/web_compositor_animation_player_impl.cc index b73d8d8..150ec93 100644 --- a/cc/blink/web_compositor_animation_player_impl.cc +++ b/cc/blink/web_compositor_animation_player_impl.cc @@ -68,4 +68,8 @@ void WebCompositorAnimationPlayerImpl::pauseAnimation(int animation_id, animation_player_->PauseAnimation(animation_id, time_offset); } +void WebCompositorAnimationPlayerImpl::abortAnimation(int animation_id) { + animation_player_->AbortAnimation(animation_id); +} + } // namespace cc_blink |