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

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

Issue 1328723003: Rename KeyframeEffect::isAnimation to KeyframeEffect::isKeyframeEffect (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/core/animation/ElementAnimations.cpp ('k') | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/KeyframeEffect.h
diff --git a/Source/core/animation/KeyframeEffect.h b/Source/core/animation/KeyframeEffect.h
index ec93db5f13544126c07b18c54826df5e32d20147..67db902acf5a1f0377d034e2cfb5a6e5c55577ab 100644
--- a/Source/core/animation/KeyframeEffect.h
+++ b/Source/core/animation/KeyframeEffect.h
@@ -61,7 +61,7 @@ public:
~KeyframeEffect() override;
- bool isAnimation() const override { return true; }
+ bool isKeyframeEffect() const override { return true; }
bool affects(PropertyHandle) const;
const EffectModel* model() const { return m_model.get(); }
@@ -118,7 +118,7 @@ private:
friend class AnimationAnimationV8Test;
};
-DEFINE_TYPE_CASTS(KeyframeEffect, AnimationEffect, animationNode, animationNode->isAnimation(), animationNode.isAnimation());
+DEFINE_TYPE_CASTS(KeyframeEffect, AnimationEffect, animationNode, animationNode->isKeyframeEffect(), animationNode.isKeyframeEffect());
} // namespace blink
« no previous file with comments | « Source/core/animation/ElementAnimations.cpp ('k') | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698