diff options
Diffstat (limited to 'webkit/compositor_bindings/web_float_animation_curve_impl.h')
-rw-r--r-- | webkit/compositor_bindings/web_float_animation_curve_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/compositor_bindings/web_float_animation_curve_impl.h b/webkit/compositor_bindings/web_float_animation_curve_impl.h index 299190f..b33ca8b 100644 --- a/webkit/compositor_bindings/web_float_animation_curve_impl.h +++ b/webkit/compositor_bindings/web_float_animation_curve_impl.h @@ -9,8 +9,8 @@ #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatAnimationCurve.h" namespace cc { -class CCAnimationCurve; -class CCKeyframedFloatAnimationCurve; +class AnimationCurve; +class KeyframedFloatAnimationCurve; } namespace WebKit { @@ -30,10 +30,10 @@ public: virtual float getValue(double time) const OVERRIDE; - scoped_ptr<cc::CCAnimationCurve> cloneToCCAnimationCurve() const; + scoped_ptr<cc::AnimationCurve> cloneToAnimationCurve() const; private: - scoped_ptr<cc::CCKeyframedFloatAnimationCurve> m_curve; + scoped_ptr<cc::KeyframedFloatAnimationCurve> m_curve; }; } |