| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelper.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| index eef1bd10484024ce13e08f291794b3c82632aa72..ace2b8c3a6a643832bfc2c601336433e42273ba6 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
|
| @@ -159,17 +159,17 @@ void PrintTo(const AnimatableVisibility& animVisibility, ::std::ostream* os)
|
| {
|
| *os << "AnimatableVisibility(";
|
| switch (animVisibility.visibility()) {
|
| - case VISIBLE:
|
| - *os << "VISIBLE";
|
| + case EVisibility::Visible:
|
| + *os << "EVisibility::Visible";
|
| break;
|
| - case HIDDEN:
|
| - *os << "HIDDEN";
|
| + case EVisibility::Hidden:
|
| + *os << "EVisibility::Hidden";
|
| break;
|
| - case COLLAPSE:
|
| - *os << "COLLAPSE";
|
| + case EVisibility::Collapse:
|
| + *os << "EVisibility::Collapse";
|
| break;
|
| default:
|
| - *os << "Unknown Visbilility - update switch in AnimatableValueTestHelper.h";
|
| + *os << "Unknown Visibility - update switch in AnimatableValueTestHelper.h";
|
| }
|
| *os << ")";
|
| }
|
|
|