| Index: ui/compositor/layer_animator_unittest.cc
|
| diff --git a/ui/compositor/layer_animator_unittest.cc b/ui/compositor/layer_animator_unittest.cc
|
| index 7c5220057ea93ef8819d698e5ded161f81e04338..ed739656e56be3bee3d82a7a38f072e330678f91 100644
|
| --- a/ui/compositor/layer_animator_unittest.cc
|
| +++ b/ui/compositor/layer_animator_unittest.cc
|
| @@ -2185,9 +2185,9 @@ TEST(LayerAnimatorTest, Color) {
|
| TEST(LayerAnimatorTest, SchedulePauseForProperties) {
|
| scoped_refptr<LayerAnimator> animator(LayerAnimator::CreateDefaultAnimator());
|
| animator->set_preemption_strategy(LayerAnimator::ENQUEUE_NEW_ANIMATION);
|
| - animator->SchedulePauseForProperties(base::TimeDelta::FromMilliseconds(100),
|
| - LayerAnimationElement::TRANSFORM,
|
| - LayerAnimationElement::BOUNDS, -1);
|
| + animator->SchedulePauseForProperties(
|
| + base::TimeDelta::FromMilliseconds(100),
|
| + LayerAnimationElement::TRANSFORM | LayerAnimationElement::BOUNDS);
|
| EXPECT_TRUE(animator->IsAnimatingProperty(LayerAnimationElement::TRANSFORM));
|
| EXPECT_TRUE(animator->IsAnimatingProperty(LayerAnimationElement::BOUNDS));
|
| EXPECT_FALSE(animator->IsAnimatingProperty(LayerAnimationElement::OPACITY));
|
|
|