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

Unified Diff: Source/core/animation/ColorStyleInterpolationTest.cpp

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: Source/core/animation/ColorStyleInterpolationTest.cpp
diff --git a/Source/core/animation/ColorStyleInterpolationTest.cpp b/Source/core/animation/ColorStyleInterpolationTest.cpp
index 2cf4a04b425ddcc9a39c6073efde1c43ffeb4947..5f6b49f6d09d3f953c353a6cc6dbfd629a1ae192 100644
--- a/Source/core/animation/ColorStyleInterpolationTest.cpp
+++ b/Source/core/animation/ColorStyleInterpolationTest.cpp
@@ -15,7 +15,7 @@ namespace blink {
class AnimationColorStyleInterpolationTest : public ::testing::Test {
protected:
- static PassOwnPtrWillBeRawPtr<InterpolableValue> colorToInterpolableValue(const CSSValue& value)
+ static PassOwnPtr<InterpolableValue> colorToInterpolableValue(const CSSValue& value)
{
return ColorStyleInterpolation::colorToInterpolableValue(value);
}
@@ -71,7 +71,7 @@ TEST_F(AnimationColorStyleInterpolationTest, ValueIDColor)
TEST_F(AnimationColorStyleInterpolationTest, Interpolation)
{
- RefPtrWillBeRawPtr<Interpolation> interpolation = ColorStyleInterpolation::create(
+ RefPtr<Interpolation> interpolation = ColorStyleInterpolation::create(
*CSSPrimitiveValue::createColor(makeRGBA(0, 0, 0, 255)),
*CSSPrimitiveValue::createColor(makeRGBA(255, 255, 255, 255)),
CSSPropertyColor

Powered by Google App Engine
This is Rietveld 408576698