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

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

Issue 472753002: Remove unused class CSSArrayFunctionValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pp3
Patch Set: Created 6 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
« no previous file with comments | « Source/core/animation/animatable/AnimatableNeutralTest.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/animatable/AnimatableUnknownTest.cpp
diff --git a/Source/core/animation/animatable/AnimatableUnknownTest.cpp b/Source/core/animation/animatable/AnimatableUnknownTest.cpp
index ad7f1689b9f2fbf4d74697819a4dcb90055fa058..4ed811d930d3461d3df62dc0239045b0dd6bb3f4 100644
--- a/Source/core/animation/animatable/AnimatableUnknownTest.cpp
+++ b/Source/core/animation/animatable/AnimatableUnknownTest.cpp
@@ -32,7 +32,7 @@
#include "core/animation/animatable/AnimatableUnknown.h"
#include "core/animation/animatable/AnimatableNeutral.h"
-#include "core/css/CSSArrayFunctionValue.h"
+#include "core/css/CSSValuePool.h"
#include <gtest/gtest.h>
@@ -44,10 +44,10 @@ class AnimationAnimatableUnknownTest : public ::testing::Test {
protected:
virtual void SetUp()
{
- cssValue = CSSArrayFunctionValue::create();
+ cssValue = cssValuePool().createIdentifierValue(CSSValueYellow);
animatableUnknown = AnimatableUnknown::create(cssValue);
- otherCSSValue = CSSArrayFunctionValue::create();
+ otherCSSValue = cssValuePool().createIdentifierValue(CSSValueOrange);
otherAnimatableUnknown = AnimatableUnknown::create(otherCSSValue);
}
« no previous file with comments | « Source/core/animation/animatable/AnimatableNeutralTest.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698