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

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

Issue 2346193002: Split CSSPrimitiveValue into CSSPrimitiveValue and CSSIdentifierValue (Closed)
Patch Set: Rebase please work Created 4 years, 3 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/AnimatableUnknownTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableUnknownTest.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableUnknownTest.cpp
index 7fa9cc6e1256417c0a6d5ed3f7da9a5ddf25d140..d408490af6ff7a5be469b9c749bc88b02112bd9e 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableUnknownTest.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableUnknownTest.cpp
@@ -40,10 +40,10 @@ class AnimationAnimatableUnknownTest : public ::testing::Test {
protected:
virtual void SetUp()
{
- cssValue = CSSPrimitiveValue::createIdentifier(CSSValueYellow);
+ cssValue = CSSIdentifierValue::create(CSSValueYellow);
animatableUnknown = AnimatableUnknown::create(cssValue);
- otherCSSValue = CSSPrimitiveValue::createIdentifier(CSSValueOrange);
+ otherCSSValue = CSSIdentifierValue::create(CSSValueOrange);
otherAnimatableUnknown = AnimatableUnknown::create(otherCSSValue);
}

Powered by Google App Engine
This is Rietveld 408576698