Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(873)

Unified Diff: Source/core/page/animation/AnimationBase.cpp

Issue 24921002: Make compositingState explicit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ready for review Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/page/animation/AnimationBase.cpp
diff --git a/Source/core/page/animation/AnimationBase.cpp b/Source/core/page/animation/AnimationBase.cpp
index f5dd049cf0bdd934664cb52310918244667ce84b..2bec9a433e5d563525af8cfb7aa876cbacda52ad 100644
--- a/Source/core/page/animation/AnimationBase.cpp
+++ b/Source/core/page/animation/AnimationBase.cpp
@@ -564,7 +564,7 @@ void AnimationBase::freezeAtTime(double t)
else
m_pauseTime = m_startTime + t - m_animation->delay();
- if (m_object && m_object->isComposited())
+ if (m_object && m_object->compositingState() == PaintsIntoOwnBacking)
toRenderBoxModelObject(m_object)->suspendAnimations(m_pauseTime);
}

Powered by Google App Engine
This is Rietveld 408576698