| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "WebTransformAnimationCurveImpl.h" | |
| 8 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/timing_function.h" | 8 #include "cc/timing_function.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebTransformationMa
trix.h" |
| 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperati
ons.h" | 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperati
ons.h" |
| 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebTransformationMa
trix.h" | 12 #include "web_transform_animation_curve_impl.h" |
| 13 | 13 |
| 14 using namespace WebKit; | 14 using namespace WebKit; |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 // Tests that a transform animation with one keyframe works as expected. | 18 // Tests that a transform animation with one keyframe works as expected. |
| 19 TEST(WebTransformAnimationCurveTest, OneTransformKeyframe) | 19 TEST(WebTransformAnimationCurveTest, OneTransformKeyframe) |
| 20 { | 20 { |
| 21 scoped_ptr<WebTransformAnimationCurve> curve(new WebTransformAnimationCurveI
mpl); | 21 scoped_ptr<WebTransformAnimationCurve> curve(new WebTransformAnimationCurveI
mpl); |
| 22 WebKit::WebTransformOperations operations; | 22 WebKit::WebTransformOperations operations; |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 curve->add(WebTransformKeyframe(1, operations2), WebAnimationCurve::TimingFu
nctionTypeLinear); | 265 curve->add(WebTransformKeyframe(1, operations2), WebAnimationCurve::TimingFu
nctionTypeLinear); |
| 266 | 266 |
| 267 scoped_ptr<cc::CCTimingFunction> timingFunction(cc::CCEaseTimingFunction::cr
eate()); | 267 scoped_ptr<cc::CCTimingFunction> timingFunction(cc::CCEaseTimingFunction::cr
eate()); |
| 268 for (int i = 0; i <= 4; ++i) { | 268 for (int i = 0; i <= 4; ++i) { |
| 269 const double time = i * 0.25; | 269 const double time = i * 0.25; |
| 270 EXPECT_FLOAT_EQ(timingFunction->getValue(time), curve->getValue(time).m4
1()); | 270 EXPECT_FLOAT_EQ(timingFunction->getValue(time), curve->getValue(time).m4
1()); |
| 271 } | 271 } |
| 272 } | 272 } |
| 273 | 273 |
| 274 } // namespace | 274 } // namespace |
| OLD | NEW |