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

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

Issue 966923003: Make SVGLengthMode an enum class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | Source/core/layout/svg/LayoutSVGRect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
diff --git a/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp b/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
index 4c3baa6250b0f3f95cc4897b77e8e49745996089..e4ed137661acdcf87d3f15be2cc82fb7decf6252 100644
--- a/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
+++ b/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
@@ -71,8 +71,8 @@ TEST_F(AnimationAnimatableValueTestHelperTest, PrintTo)
PrintToString(const_cast<AnimatableValue*>(AnimatableValue::neutralValue())),
testing::StartsWith("AnimatableNeutral@"));
- RefPtrWillBeRawPtr<SVGLength> length1cm = SVGLength::create(LengthModeOther);
- RefPtrWillBeRawPtr<SVGLength> length2cm = SVGLength::create(LengthModeOther);
+ RefPtrWillBeRawPtr<SVGLength> length1cm = SVGLength::create();
+ RefPtrWillBeRawPtr<SVGLength> length2cm = SVGLength::create();
length1cm->setValueAsString("1cm", ASSERT_NO_EXCEPTION);
length2cm->setValueAsString("2cm", ASSERT_NO_EXCEPTION);
« no previous file with comments | « no previous file | Source/core/layout/svg/LayoutSVGRect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698