Index: cc/animation/timing_function.h |
diff --git a/cc/animation/timing_function.h b/cc/animation/timing_function.h |
index 056ad41419357eb4e6771801296d3f7b920c6e4e..647701f30ce596627279804ab0d6a765d04b209a 100644 |
--- a/cc/animation/timing_function.h |
+++ b/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); |