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

Unified Diff: Source/core/page/animation/ImplicitAnimation.h

Issue 14391005: Rename Animation -> PrimitiveAnimation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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/page/animation/ImplicitAnimation.h
diff --git a/Source/core/page/animation/ImplicitAnimation.h b/Source/core/page/animation/ImplicitAnimation.h
index ce1dcec8a1428426ee49b52a7c44a8e71333901b..d3772a3c7dea836c92fb0241a5871a5eaff0cf33 100644
--- a/Source/core/page/animation/ImplicitAnimation.h
+++ b/Source/core/page/animation/ImplicitAnimation.h
@@ -39,7 +39,7 @@ namespace WebCore {
// for a single RenderObject.
class ImplicitAnimation : public AnimationBase {
public:
- static PassRefPtr<ImplicitAnimation> create(const Animation* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
+ static PassRefPtr<ImplicitAnimation> create(const PrimitiveAnimation* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
{
return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
};
@@ -80,7 +80,7 @@ protected:
void checkForMatchingFilterFunctionLists();
private:
- ImplicitAnimation(const Animation*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
+ ImplicitAnimation(const PrimitiveAnimation*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
virtual ~ImplicitAnimation();
CSSPropertyID m_transitionProperty; // Transition property as specified in the RenderStyle.

Powered by Google App Engine
This is Rietveld 408576698