Index: cc/timing_function.h |
diff --git a/cc/timing_function.h b/cc/timing_function.h |
index df9e7ef76667f2eba65b9656e86de7114e9b031d..1150ebaba0db730d428d4552f063c7ef61a82725 100644 |
--- a/cc/timing_function.h |
+++ b/cc/timing_function.h |
@@ -5,9 +5,9 @@ |
#ifndef CC_TIMING_FUNCTION_H_ |
#define CC_TIMING_FUNCTION_H_ |
-#include "UnitBezier.h" |
#include "cc/animation_curve.h" |
#include "cc/cc_export.h" |
+#include "third_party/skia/include/core/SkScalar.h" |
namespace cc { |
@@ -35,7 +35,10 @@ public: |
protected: |
CubicBezierTimingFunction(double x1, double y1, double x2, double y2); |
- UnitBezier m_curve; |
+ SkScalar m_x1; |
+ SkScalar m_y1; |
+ SkScalar m_x2; |
+ SkScalar m_y2; |
}; |
class CC_EXPORT EaseTimingFunction { |