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

Unified Diff: Source/core/dom/Document.cpp

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use new API in layout tests Created 5 years, 8 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/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);

Powered by Google App Engine
This is Rietveld 408576698