| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 06937957447792bdd839993642f33023b7ff3070..ac185f3d033ad6210418fb2c1063545eabbf6ee7 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -1545,7 +1545,7 @@ bool Document::needsFullLayoutTreeUpdate() const
|
| // FIXME: The childNeedsDistributionRecalc bit means either self or children, we should fix that.
|
| if (childNeedsDistributionRecalc())
|
| return true;
|
| - if (DocumentAnimations::needsOutdatedAnimationPlayerUpdate(*this))
|
| + if (DocumentAnimations::needsOutdatedAnimationUpdate(*this))
|
| return true;
|
| return false;
|
| }
|
| @@ -1765,7 +1765,7 @@ void Document::updateLayoutTree(StyleRecalcChange change)
|
| if (m_focusedElement && !m_focusedElement->isFocusable())
|
| clearFocusedElementSoon();
|
|
|
| - ASSERT(!m_timeline->hasOutdatedAnimationPlayer());
|
| + ASSERT(!m_timeline->hasOutdatedAnimation());
|
|
|
| TRACE_EVENT_END1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "RecalculateStyles", "elementCount", m_styleRecalcElementCounter);
|
| TRACE_EVENT_END1("blink", "Document::updateLayoutTree", "elementCount", m_styleRecalcElementCounter);
|
|
|