Commit 9e79b468 authored by vollick@chromium.org's avatar vollick@chromium.org

Fix OnLayerAnimationEnded notifications.

BUG=None
TEST=None


Review URL: http://codereview.chromium.org/8341022

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107178 0039d316-1c4b-4281-b951-d872f2087c98
parent facc68c3
...@@ -171,6 +171,8 @@ void LayerAnimationManager::AnimationProgressed( ...@@ -171,6 +171,8 @@ void LayerAnimationManager::AnimationProgressed(
void LayerAnimationManager::AnimationEnded(const ui::Animation* animation) { void LayerAnimationManager::AnimationEnded(const ui::Animation* animation) {
AnimationProgressed(animation); AnimationProgressed(animation);
if (layer_->delegate())
layer_->delegate()->OnLayerAnimationEnded(animation);
} }
void LayerAnimationManager::StopAnimating(AnimationProperty property) { void LayerAnimationManager::StopAnimating(AnimationProperty property) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment