| 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 246a78d1b7709583b476c9cd72caf7f36fd12f3e..5d2fa22874092e813a914669fe5ab4adc27075ba 100644
|
| --- a/ui/views/animation/ink_drop_animation_unittest.cc
|
| +++ b/ui/views/animation/ink_drop_animation_unittest.cc
|
| @@ -8,6 +8,7 @@
|
| #include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "ui/gfx/color_palette.h"
|
| #include "ui/gfx/geometry/size.h"
|
| #include "ui/gfx/geometry/size_f.h"
|
| #include "ui/views/animation/ink_drop_animation.h"
|
| @@ -229,7 +230,8 @@ InkDropAnimationDerivativesTest::InkDropAnimationDerivativesTest() {
|
| 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::kPlaceholderColor, gfx::Size(10, 10),
|
| + 2, gfx::Size(8, 8), 1);
|
| ink_drop_animation_.reset(typed_ink_drop_animation);
|
| test_api_.reset(
|
| new SquareInkDropAnimationTestApi(typed_ink_drop_animation));
|
|
|