Searched defs:InterpolableValue (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolableValue.h15 class InterpolableValue : public NoBaseWillBeGarbageCollected<InterpolableValue> { class in namespace:blink
16 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(InterpolableValue);
23 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const = 0;
28 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> interpolate(const InterpolableValue &to, const double progress) const = 0;
40 class InterpolableNumber : public InterpolableValue {
49 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> clone() const OVERRIDE FINAL { return create(m_value); }
51 virtual void trace(Visitor* visitor) OVERRIDE { InterpolableValue::trace(visitor); }
54 virtual PassOwnPtrWillBeRawPtr<InterpolableValue> interpolat
[all...]

Completed in 75 milliseconds