Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp

Issue 2181953004: Changed ComputedStyle's EVisibility to be an enum class and fixed naming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_move_computedstyle_around
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
index 575e0c5aff7c6d6e0d9ba0c3b21cedeb32d7d2fb..909370ef15a56482128daf5e4b78ec528e701b6c 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
@@ -81,8 +81,8 @@ TEST_F(AnimationAnimatableValueTestHelperTest, PrintTo)
PrintToString(AnimatableUnknown::create(CSSPrimitiveValue::createIdentifier(CSSValueNone))));
EXPECT_EQ(
- ::std::string("AnimatableVisibility(VISIBLE)"),
- PrintToString(AnimatableVisibility::create(VISIBLE)));
+ ::std::string("AnimatableVisibility(EVisibility::Visible)"),
+ PrintToString(AnimatableVisibility::create(EVisibility::Visible)));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698