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 3f8a89f93f42c9b9fcc84927bcba12e3f2234127..e31613c3f720647294d268dd7a28a7935847d9b8 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, |