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; } |