OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/blink/web_transform_animation_curve_impl.h" | 5 #include "cc/blink/web_transform_animation_curve_impl.h" |
6 | 6 |
7 #include "cc/animation/keyframed_animation_curve.h" | 7 #include "cc/animation/keyframed_animation_curve.h" |
8 #include "cc/animation/timing_function.h" | 8 #include "cc/animation/timing_function.h" |
9 #include "cc/animation/transform_operations.h" | 9 #include "cc/animation/transform_operations.h" |
10 #include "cc/blink/web_animation_curve_common.h" | 10 #include "cc/blink/web_animation_curve_common.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 double y2) { | 46 double y2) { |
47 const cc::TransformOperations& transform_operations = | 47 const cc::TransformOperations& transform_operations = |
48 static_cast<const WebTransformOperationsImpl&>(keyframe.value()) | 48 static_cast<const WebTransformOperationsImpl&>(keyframe.value()) |
49 .AsTransformOperations(); | 49 .AsTransformOperations(); |
50 curve_->AddKeyframe(cc::TransformKeyframe::Create( | 50 curve_->AddKeyframe(cc::TransformKeyframe::Create( |
51 keyframe.time(), | 51 keyframe.time(), |
52 transform_operations, | 52 transform_operations, |
53 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2))); | 53 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2))); |
54 } | 54 } |
55 | 55 |
| 56 void WebTransformAnimationCurveImpl::setTimingFunction( |
| 57 TimingFunctionType type) { |
| 58 curve_->SetTimingFunction(CreateTimingFunction(type)); |
| 59 } |
| 60 |
| 61 void WebTransformAnimationCurveImpl::setTimingFunction(double x1, |
| 62 double y1, |
| 63 double x2, |
| 64 double y2) { |
| 65 curve_->SetTimingFunction( |
| 66 cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2).Pass()); |
| 67 } |
| 68 |
56 scoped_ptr<cc::AnimationCurve> | 69 scoped_ptr<cc::AnimationCurve> |
57 WebTransformAnimationCurveImpl::CloneToAnimationCurve() const { | 70 WebTransformAnimationCurveImpl::CloneToAnimationCurve() const { |
58 return curve_->Clone(); | 71 return curve_->Clone(); |
59 } | 72 } |
60 | 73 |
61 } // namespace cc_blink | 74 } // namespace cc_blink |
OLD | NEW |