X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcc%2Fanimation%2Ftiming_function.h;h=647701f30ce596627279804ab0d6a765d04b209a;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=056ad41419357eb4e6771801296d3f7b920c6e4e;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/cc/animation/timing_function.h b/src/cc/animation/timing_function.h index 056ad41..647701f 100644 --- a/src/cc/animation/timing_function.h +++ b/src/cc/animation/timing_function.h @@ -7,7 +7,7 @@ #include "cc/animation/animation_curve.h" #include "cc/base/cc_export.h" -#include "third_party/skia/include/core/SkScalar.h" +#include "ui/gfx/geometry/cubic_bezier.h" namespace cc { @@ -45,10 +45,7 @@ class CC_EXPORT CubicBezierTimingFunction : public TimingFunction { protected: CubicBezierTimingFunction(double x1, double y1, double x2, double y2); - double x1_; - double y1_; - double x2_; - double y2_; + gfx::CubicBezier bezier_; private: DISALLOW_ASSIGN(CubicBezierTimingFunction);