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 d7312b1..25b054d 100644 --- a/webkit/compositor_bindings/web_animation_impl.h +++ b/webkit/compositor_bindings/web_animation_impl.h @@ -9,7 +9,7 @@ #include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h" namespace cc { -class CCActiveAnimation; +class ActiveAnimation; } namespace WebKit { @@ -31,10 +31,10 @@ public: virtual bool alternatesDirection() const OVERRIDE; virtual void setAlternatesDirection(bool) OVERRIDE; - scoped_ptr<cc::CCActiveAnimation> cloneToCCAnimation(); + scoped_ptr<cc::ActiveAnimation> cloneToAnimation(); private: - scoped_ptr<cc::CCActiveAnimation> m_animation; + scoped_ptr<cc::ActiveAnimation> m_animation; }; } |