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

Unified Diff: Source/core/animation/AnimationStack.h

Issue 21012002: Web Animations: Trigger and update CSS Animations backed by the Web Animations model (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix windows build. Created 7 years, 5 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/animation/AnimationStack.h
diff --git a/Source/core/animation/AnimationStack.h b/Source/core/animation/AnimationStack.h
index 3bbf48819b7e822813228418f2ea83b109d93155..e6e28f689732469af295459b0c30fda9191aeb22 100644
--- a/Source/core/animation/AnimationStack.h
+++ b/Source/core/animation/AnimationStack.h
@@ -50,7 +50,7 @@ public:
ASSERT(position != notFound);
m_activeAnimations.remove(position);
}
- bool hasActiveAnimations() const { return !m_activeAnimations.isEmpty(); }
+ bool isEmpty() const { return m_activeAnimations.isEmpty(); }
// FIXME: This should be PassRefPtr<CompositableValue> composite(Element*, CSSPropertyId)
const Vector<Animation*>& activeAnimations(const Element* element) const { return m_activeAnimations; }

Powered by Google App Engine
This is Rietveld 408576698