| Index: cc/animation/layer_animation_controller_unittest.cc
|
| diff --git a/cc/animation/layer_animation_controller_unittest.cc b/cc/animation/layer_animation_controller_unittest.cc
|
| index 5ecf85770d33f2a827516e70b597cb7e306c6f53..34bdad03f366ca79d255468fffef059f542c3a53 100644
|
| --- a/cc/animation/layer_animation_controller_unittest.cc
|
| +++ b/cc/animation/layer_animation_controller_unittest.cc
|
| @@ -663,8 +663,8 @@ TEST(LayerAnimationControllerTest, ScrollOffsetTransition) {
|
| controller->AddValueObserver(&dummy);
|
| controller->set_value_provider(&dummy_provider);
|
|
|
| - gfx::Vector2dF initial_value(100.f, 300.f);
|
| - gfx::Vector2dF target_value(300.f, 200.f);
|
| + gfx::ScrollOffset initial_value(100.f, 300.f);
|
| + gfx::ScrollOffset target_value(300.f, 200.f);
|
| scoped_ptr<ScrollOffsetAnimationCurve> curve(
|
| ScrollOffsetAnimationCurve::Create(
|
| target_value,
|
| @@ -745,8 +745,8 @@ TEST(LayerAnimationControllerTest, ScrollOffsetTransitionNoImplProvider) {
|
| controller->AddValueObserver(&dummy);
|
| controller->set_value_provider(&dummy_provider);
|
|
|
| - gfx::Vector2dF initial_value(500.f, 100.f);
|
| - gfx::Vector2dF target_value(300.f, 200.f);
|
| + gfx::ScrollOffset initial_value(500.f, 100.f);
|
| + gfx::ScrollOffset target_value(300.f, 200.f);
|
| scoped_ptr<ScrollOffsetAnimationCurve> curve(
|
| ScrollOffsetAnimationCurve::Create(
|
| target_value,
|
| @@ -819,8 +819,8 @@ TEST(LayerAnimationControllerTest, ScrollOffsetTransitionOnImplOnly) {
|
| scoped_ptr<AnimationEventsVector> events(
|
| make_scoped_ptr(new AnimationEventsVector));
|
|
|
| - gfx::Vector2dF initial_value(100.f, 300.f);
|
| - gfx::Vector2dF target_value(300.f, 200.f);
|
| + gfx::ScrollOffset initial_value(100.f, 300.f);
|
| + gfx::ScrollOffset target_value(300.f, 200.f);
|
| scoped_ptr<ScrollOffsetAnimationCurve> curve(
|
| ScrollOffsetAnimationCurve::Create(
|
| target_value,
|
|
|