Lines Matching full:virtual
31 virtual ~AnimationCurve() {}
33 virtual double Duration() const = 0;
34 virtual CurveType Type() const = 0;
35 virtual scoped_ptr<AnimationCurve> Clone() const = 0;
48 virtual ~ColorAnimationCurve() {}
50 virtual SkColor GetValue(double t) const = 0;
53 virtual CurveType Type() const OVERRIDE;
58 virtual ~FloatAnimationCurve() {}
60 virtual float GetValue(double t) const = 0;
63 virtual CurveType Type() const OVERRIDE;
68 virtual ~TransformAnimationCurve() {}
70 virtual gfx::Transform GetValue(double t) const = 0;
75 virtual bool AnimatedBoundsForBox(const gfx::BoxF& box,
79 virtual CurveType Type() const OVERRIDE;
84 virtual ~FilterAnimationCurve() {}
86 virtual FilterOperations GetValue(double t) const = 0;
89 virtual CurveType Type() const OVERRIDE;