diff options
Diffstat (limited to 'webkit/compositor_bindings/web_animation_impl.h')
-rw-r--r-- | webkit/compositor_bindings/web_animation_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/compositor_bindings/web_animation_impl.h b/webkit/compositor_bindings/web_animation_impl.h index ebeca88..905edc8 100644 --- a/webkit/compositor_bindings/web_animation_impl.h +++ b/webkit/compositor_bindings/web_animation_impl.h @@ -10,7 +10,7 @@ #include "webkit/compositor_bindings/webkit_compositor_bindings_export.h" namespace cc { -class Animation; +class ActiveAnimation; } namespace WebKit { @@ -33,10 +33,10 @@ public: virtual bool alternatesDirection() const OVERRIDE; virtual void setAlternatesDirection(bool) OVERRIDE; - scoped_ptr<cc::Animation> cloneToAnimation(); + scoped_ptr<cc::ActiveAnimation> cloneToAnimation(); private: - scoped_ptr<cc::Animation> m_animation; + scoped_ptr<cc::ActiveAnimation> m_animation; }; } |