| Index: cc/keyframed_animation_curve.h
|
| diff --git a/cc/keyframed_animation_curve.h b/cc/keyframed_animation_curve.h
|
| index 5685eb87bdc8bfb912831ea6728e9d78395262f8..cfd19157ccadddf6c7c4aac9969c794d1c7a8570 100644
|
| --- a/cc/keyframed_animation_curve.h
|
| +++ b/cc/keyframed_animation_curve.h
|
| @@ -9,7 +9,7 @@
|
| #include "cc/cc_export.h"
|
| #include "cc/scoped_ptr_vector.h"
|
| #include "cc/timing_function.h"
|
| -#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
|
| +#include "cc/transform_operations.h"
|
|
|
| namespace cc {
|
|
|
| @@ -46,17 +46,17 @@ private:
|
|
|
| class CC_EXPORT TransformKeyframe : public Keyframe {
|
| public:
|
| - static scoped_ptr<TransformKeyframe> create(double time, const WebKit::WebTransformOperations& value, scoped_ptr<TimingFunction>);
|
| + static scoped_ptr<TransformKeyframe> create(double time, const TransformOperations& value, scoped_ptr<TimingFunction>);
|
| virtual ~TransformKeyframe();
|
|
|
| - const WebKit::WebTransformOperations& value() const;
|
| + const TransformOperations& value() const;
|
|
|
| scoped_ptr<TransformKeyframe> clone() const;
|
|
|
| private:
|
| - TransformKeyframe(double time, const WebKit::WebTransformOperations& value, scoped_ptr<TimingFunction>);
|
| + TransformKeyframe(double time, const TransformOperations& value, scoped_ptr<TimingFunction>);
|
|
|
| - WebKit::WebTransformOperations m_value;
|
| + TransformOperations m_value;
|
| };
|
|
|
| class CC_EXPORT KeyframedFloatAnimationCurve : public FloatAnimationCurve {
|
|
|