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

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

Issue 2382653006: Split CSSPrimitiveValue into CSSPrimitiveValue and CSSIdentifierValue (Closed)
Patch Set: Make check-webkit-style happy 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 c71acd712e13b988aa690b1f12e2b1e303e21ba5..3da6b49ae23a382710beb6f07b296f736fdbfba4 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableUnknownTest.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableUnknownTest.cpp
@@ -39,10 +39,10 @@ namespace blink {
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