Index: third_party/WebKit/Source/platform/animation/CompositorTransformAnimationCurve.cpp |
diff --git a/third_party/WebKit/Source/platform/animation/CompositorTransformAnimationCurve.cpp b/third_party/WebKit/Source/platform/animation/CompositorTransformAnimationCurve.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6bb27985895c81408bc34c8b7309e8c070c9d592 |
--- /dev/null |
+++ b/third_party/WebKit/Source/platform/animation/CompositorTransformAnimationCurve.cpp |
@@ -0,0 +1,85 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "platform/animation/CompositorTransformAnimationCurve.h" |
+ |
+#include "cc/animation/keyframed_animation_curve.h" |
+#include "cc/animation/timing_function.h" |
+#include "cc/animation/transform_operations.h" |
+#include "platform/animation/CompositorTransformOperations.h" |
+ |
+using blink::CompositorTransformKeyframe; |
+ |
+namespace blink { |
+ |
+CompositorTransformAnimationCurve::CompositorTransformAnimationCurve() |
+ : m_curve(cc::KeyframedTransformAnimationCurve::Create()) |
+{ |
+} |
+ |
+CompositorTransformAnimationCurve::~CompositorTransformAnimationCurve() |
+{ |
+} |
+ |
+CompositorAnimationCurve::AnimationCurveType CompositorTransformAnimationCurve::type() const |
+{ |
+ return CompositorAnimationCurve::AnimationCurveTypeTransform; |
+} |
+ |
+void CompositorTransformAnimationCurve::add(const CompositorTransformKeyframe& keyframe) |
+{ |
+ add(keyframe, TimingFunctionTypeEase); |
+} |
+ |
+void CompositorTransformAnimationCurve::add(const CompositorTransformKeyframe& keyframe, TimingFunctionType type) |
+{ |
+ const cc::TransformOperations& transformOperations = keyframe.value().asTransformOperations(); |
+ m_curve->AddKeyframe(cc::TransformKeyframe::Create( |
+ base::TimeDelta::FromSecondsD(keyframe.time()), transformOperations, |
+ createTimingFunction(type))); |
+} |
+ |
+void CompositorTransformAnimationCurve::add(const CompositorTransformKeyframe& keyframe, double x1, double y1, double x2, double y2) |
+{ |
+ const cc::TransformOperations& transformOperations = keyframe.value().asTransformOperations(); |
+ m_curve->AddKeyframe(cc::TransformKeyframe::Create( |
+ base::TimeDelta::FromSecondsD(keyframe.time()), transformOperations, |
+ cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2))); |
+} |
+ |
+void CompositorTransformAnimationCurve::add(const CompositorTransformKeyframe& keyframe, int steps, float stepsStartOffset) |
+{ |
+ const cc::TransformOperations& transformOperations = keyframe.value().asTransformOperations(); |
+ m_curve->AddKeyframe(cc::TransformKeyframe::Create( |
+ base::TimeDelta::FromSecondsD(keyframe.time()), transformOperations, |
+ cc::StepsTimingFunction::Create(steps, stepsStartOffset))); |
+} |
+ |
+void CompositorTransformAnimationCurve::setLinearTimingFunction() |
+{ |
+ m_curve->SetTimingFunction(nullptr); |
+} |
+ |
+void CompositorTransformAnimationCurve::setCubicBezierTimingFunction(TimingFunctionType type) |
+{ |
+ m_curve->SetTimingFunction(createTimingFunction(type)); |
+} |
+ |
+void CompositorTransformAnimationCurve::setCubicBezierTimingFunction(double x1, double y1, double x2, double y2) |
+{ |
+ m_curve->SetTimingFunction( |
+ cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)); |
+} |
+ |
+void CompositorTransformAnimationCurve::setStepsTimingFunction(int numberOfSteps, float stepsStartOffset) |
+{ |
+ m_curve->SetTimingFunction(cc::StepsTimingFunction::Create(numberOfSteps, stepsStartOffset)); |
+} |
+ |
+scoped_ptr<cc::AnimationCurve> CompositorTransformAnimationCurve::cloneToAnimationCurve() const |
+{ |
+ return m_curve->Clone(); |
+} |
+ |
+} // namespace blink |