| Index: webkit/compositor/WebFloatAnimationCurveImpl.cpp
|
| diff --git a/webkit/compositor/WebFloatAnimationCurveImpl.cpp b/webkit/compositor/WebFloatAnimationCurveImpl.cpp
|
| index 7ea8a8910088cf743c22bbb28979f8375304819a..cc1ad3506ca694660c790216302efb0974463f3d 100644
|
| --- a/webkit/compositor/WebFloatAnimationCurveImpl.cpp
|
| +++ b/webkit/compositor/WebFloatAnimationCurveImpl.cpp
|
| @@ -17,11 +17,11 @@ namespace WebKit {
|
|
|
| WebFloatAnimationCurve* WebFloatAnimationCurve::create()
|
| {
|
| - return new WebFloatAnimationCurveImpl(WebCore::CCKeyframedFloatAnimationCurve::create());
|
| + return new WebFloatAnimationCurveImpl();
|
| }
|
|
|
| -WebFloatAnimationCurveImpl::WebFloatAnimationCurveImpl(PassOwnPtr<WebCore::CCKeyframedFloatAnimationCurve> curve)
|
| - : m_curve(curve)
|
| +WebFloatAnimationCurveImpl::WebFloatAnimationCurveImpl()
|
| + : m_curve(WebCore::CCKeyframedFloatAnimationCurve::create())
|
| {
|
| }
|
|
|
|
|