| Index: webkit/compositor/WebTransformAnimationCurveImpl.cpp
|
| diff --git a/webkit/compositor/WebTransformAnimationCurveImpl.cpp b/webkit/compositor/WebTransformAnimationCurveImpl.cpp
|
| index f1efd1f74a15a45ce6073c505cc5b3ddb2880715..2cdf0002e770b507bb984499b99995d07d3b5e41 100644
|
| --- a/webkit/compositor/WebTransformAnimationCurveImpl.cpp
|
| +++ b/webkit/compositor/WebTransformAnimationCurveImpl.cpp
|
| @@ -16,11 +16,11 @@ namespace WebKit {
|
|
|
| WebTransformAnimationCurve* WebTransformAnimationCurve::create()
|
| {
|
| - return new WebTransformAnimationCurveImpl(WebCore::CCKeyframedTransformAnimationCurve::create());
|
| + return new WebTransformAnimationCurveImpl();
|
| }
|
|
|
| -WebTransformAnimationCurveImpl::WebTransformAnimationCurveImpl(PassOwnPtr<WebCore::CCKeyframedTransformAnimationCurve> curve)
|
| - : m_curve(curve)
|
| +WebTransformAnimationCurveImpl::WebTransformAnimationCurveImpl()
|
| + : m_curve(WebCore::CCKeyframedTransformAnimationCurve::create())
|
| {
|
| }
|
|
|
|
|