diff options
author | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-08 05:54:11 +0000 |
---|---|---|
committer | enne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-08 05:54:11 +0000 |
commit | a9c7b2e76a331dbbe53ca102df2d86be1e8b53cd (patch) | |
tree | 48031bf37c94612084be25bc15c86a3bb00e064d /webkit/compositor_bindings/WebTransformAnimationCurveImpl.h | |
parent | 362591a2da8a5abe42ee51dfea08d1b355c56fc8 (diff) | |
download | chromium_src-a9c7b2e76a331dbbe53ca102df2d86be1e8b53cd.zip chromium_src-a9c7b2e76a331dbbe53ca102df2d86be1e8b53cd.tar.gz chromium_src-a9c7b2e76a331dbbe53ca102df2d86be1e8b53cd.tar.bz2 |
[cc] Use base ptr types for cc's CSS animation classes
BUG=154451
Review URL: https://chromiumcodereview.appspot.com/11078009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160630 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/compositor_bindings/WebTransformAnimationCurveImpl.h')
-rw-r--r-- | webkit/compositor_bindings/WebTransformAnimationCurveImpl.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/webkit/compositor_bindings/WebTransformAnimationCurveImpl.h b/webkit/compositor_bindings/WebTransformAnimationCurveImpl.h index 8631ef9..88f1c3e 100644 --- a/webkit/compositor_bindings/WebTransformAnimationCurveImpl.h +++ b/webkit/compositor_bindings/WebTransformAnimationCurveImpl.h @@ -5,9 +5,8 @@ #ifndef WebTransformAnimationCurveImpl_h #define WebTransformAnimationCurveImpl_h +#include "base/memory/scoped_ptr.h" #include <public/WebTransformAnimationCurve.h> -#include <wtf/OwnPtr.h> -#include <wtf/PassOwnPtr.h> namespace cc { class CCAnimationCurve; @@ -31,10 +30,10 @@ public: virtual WebTransformationMatrix getValue(double time) const OVERRIDE; - PassOwnPtr<cc::CCAnimationCurve> cloneToCCAnimationCurve() const; + scoped_ptr<cc::CCAnimationCurve> cloneToCCAnimationCurve() const; private: - OwnPtr<cc::CCKeyframedTransformAnimationCurve> m_curve; + scoped_ptr<cc::CCKeyframedTransformAnimationCurve> m_curve; }; } |