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

Unified Diff: sky/engine/core/animation/animatable/AnimatableValueKeyframe.h

Issue 1229273004: Remove Animations and Transitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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: sky/engine/core/animation/animatable/AnimatableValueKeyframe.h
diff --git a/sky/engine/core/animation/animatable/AnimatableValueKeyframe.h b/sky/engine/core/animation/animatable/AnimatableValueKeyframe.h
deleted file mode 100644
index bbec3690593ae2386daa41c8188ca5d516140ded..0000000000000000000000000000000000000000
--- a/sky/engine/core/animation/animatable/AnimatableValueKeyframe.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SKY_ENGINE_CORE_ANIMATION_ANIMATABLE_ANIMATABLEVALUEKEYFRAME_H_
-#define SKY_ENGINE_CORE_ANIMATION_ANIMATABLE_ANIMATABLEVALUEKEYFRAME_H_
-
-#include "sky/engine/core/animation/Keyframe.h"
-#include "sky/engine/core/animation/animatable/AnimatableValue.h"
-
-namespace blink {
-
-class AnimatableValueKeyframe : public Keyframe {
-public:
- static PassRefPtr<AnimatableValueKeyframe> create()
- {
- return adoptRef(new AnimatableValueKeyframe);
- }
- void setPropertyValue(CSSPropertyID property, PassRefPtr<AnimatableValue> value)
- {
- m_propertyValues.add(property, value);
- }
- void clearPropertyValue(CSSPropertyID property) { m_propertyValues.remove(property); }
- AnimatableValue* propertyValue(CSSPropertyID property) const
- {
- ASSERT(m_propertyValues.contains(property));
- return m_propertyValues.get(property);
- }
- virtual PropertySet properties() const override;
-
- class PropertySpecificKeyframe : public Keyframe::PropertySpecificKeyframe {
- public:
- PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, const AnimatableValue*, AnimationEffect::CompositeOperation);
-
- AnimatableValue* value() const { return m_value.get(); }
- virtual const PassRefPtr<AnimatableValue> getAnimatableValue() const override final { return m_value; }
-
- virtual PassOwnPtr<Keyframe::PropertySpecificKeyframe> neutralKeyframe(double offset, PassRefPtr<TimingFunction> easing) const override final;
- virtual PassRefPtr<Interpolation> createInterpolation(CSSPropertyID, blink::Keyframe::PropertySpecificKeyframe* end, Element*) const override final;
-
- private:
- PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, PassRefPtr<AnimatableValue>);
-
- virtual PassOwnPtr<Keyframe::PropertySpecificKeyframe> cloneWithOffset(double offset) const override;
- virtual bool isAnimatableValuePropertySpecificKeyframe() const override { return true; }
-
- RefPtr<AnimatableValue> m_value;
- };
-
-private:
- AnimatableValueKeyframe() { }
-
- AnimatableValueKeyframe(const AnimatableValueKeyframe& copyFrom);
-
- virtual PassRefPtr<Keyframe> clone() const override;
- virtual PassOwnPtr<Keyframe::PropertySpecificKeyframe> createPropertySpecificKeyframe(CSSPropertyID) const override;
-
- virtual bool isAnimatableValueKeyframe() const override { return true; }
-
- typedef HashMap<CSSPropertyID, RefPtr<AnimatableValue> > PropertyValueMap;
- PropertyValueMap m_propertyValues;
-};
-
-typedef AnimatableValueKeyframe::PropertySpecificKeyframe AnimatableValuePropertySpecificKeyframe;
-
-DEFINE_TYPE_CASTS(AnimatableValueKeyframe, Keyframe, value, value->isAnimatableValueKeyframe(), value.isAnimatableValueKeyframe());
-DEFINE_TYPE_CASTS(AnimatableValuePropertySpecificKeyframe, Keyframe::PropertySpecificKeyframe, value, value->isAnimatableValuePropertySpecificKeyframe(), value.isAnimatableValuePropertySpecificKeyframe());
-
-}
-
-#endif // SKY_ENGINE_CORE_ANIMATION_ANIMATABLE_ANIMATABLEVALUEKEYFRAME_H_

Powered by Google App Engine
This is Rietveld 408576698