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

Unified Diff: Source/core/animation/VisibilityStyleInterpolationTest.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/VisibilityStyleInterpolationTest.cpp
diff --git a/Source/core/animation/VisibilityStyleInterpolationTest.cpp b/Source/core/animation/VisibilityStyleInterpolationTest.cpp
index 3557532163af1ca7e78266d35505b2d4669df02a..8c03b7e1dfd3a8138846d843ac7e078a51e0938a 100644
--- a/Source/core/animation/VisibilityStyleInterpolationTest.cpp
+++ b/Source/core/animation/VisibilityStyleInterpolationTest.cpp
@@ -10,7 +10,7 @@ namespace blink {
class AnimationVisibilityStyleInterpolationTest : public ::testing::Test {
protected:
- static PassOwnPtrWillBeRawPtr<InterpolableValue> visibilityToInterpolableValue(const CSSValue& value)
+ static PassOwnPtr<InterpolableValue> visibilityToInterpolableValue(const CSSValue& value)
{
return VisibilityStyleInterpolation::visibilityToInterpolableValue(value);
}
@@ -51,7 +51,7 @@ TEST_F(AnimationVisibilityStyleInterpolationTest, ValueIDs)
TEST_F(AnimationVisibilityStyleInterpolationTest, Interpolation)
{
- RefPtrWillBeRawPtr<Interpolation> interpolation = VisibilityStyleInterpolation::create(
+ RefPtr<Interpolation> interpolation = VisibilityStyleInterpolation::create(
*CSSPrimitiveValue::createIdentifier(CSSValueHidden),
*CSSPrimitiveValue::createIdentifier(CSSValueVisible),
CSSPropertyVisibility);

Powered by Google App Engine
This is Rietveld 408576698