| Index: ui/views/animation/ink_drop_animation_unittest.cc
|
| diff --git a/ui/views/animation/ink_drop_animation_unittest.cc b/ui/views/animation/ink_drop_animation_unittest.cc
|
| index 5ac7757473bc215a1c5f8ed621fc729f4c99b621..c832e70ad9478b22e8f61903fd0c2209106ac1a5 100644
|
| --- a/ui/views/animation/ink_drop_animation_unittest.cc
|
| +++ b/ui/views/animation/ink_drop_animation_unittest.cc
|
| @@ -53,14 +53,15 @@ InkDropAnimationTest::InkDropAnimationTest() {
|
| switch (GetParam()) {
|
| case SQUARE_INK_DROP_ANIMATION: {
|
| SquareInkDropAnimation* typed_ink_drop_animation =
|
| - new SquareInkDropAnimation(gfx::Size(10, 10), 2, gfx::Size(8, 8), 1);
|
| + new SquareInkDropAnimation(gfx::Size(10, 10), 2, gfx::Size(8, 8), 1,
|
| + gfx::Point(), SK_ColorBLACK);
|
| ink_drop_animation_.reset(typed_ink_drop_animation);
|
| test_api_.reset(
|
| new SquareInkDropAnimationTestApi(typed_ink_drop_animation));
|
| break;
|
| }
|
| }
|
| - ink_drop_animation_->AddObserver(&observer_);
|
| + ink_drop_animation_->set_observer(&observer_);
|
| observer_.set_ink_drop_animation(ink_drop_animation_.get());
|
| test_api_->SetDisableAnimationTimers(true);
|
| }
|
|
|