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

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

Issue 909763002: Reland: Oilpan: Fix compile failure from r189762 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use Vector<CSSTransformValue::TransformOperationType> Created 5 years, 10 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/TransformStyleInterpolation.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/TransformStyleInterpolationTest.cpp
diff --git a/Source/core/animation/TransformStyleInterpolationTest.cpp b/Source/core/animation/TransformStyleInterpolationTest.cpp
index ec2addc1bf69ec6774533c3baa44eec818c5b8f3..65718b240a36934b995b4127dc450b0043c46381 100644
--- a/Source/core/animation/TransformStyleInterpolationTest.cpp
+++ b/Source/core/animation/TransformStyleInterpolationTest.cpp
@@ -51,7 +51,7 @@ protected:
TEST_F(AnimationTransformStyleInterpolationTest, ZeroTransform)
{
- RefPtr<CSSValueList> result = CSSValueList::createSpaceSeparated();
+ RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createSpaceSeparated();
RefPtrWillBeRawPtr<CSSTransformValue> transform = CSSTransformValue::create(CSSTransformValue::PerspectiveTransformOperation);
transform->append(CSSPrimitiveValue::create(0, CSSPrimitiveValue::CSS_PX));
@@ -179,7 +179,7 @@ TEST_F(AnimationTransformStyleInterpolationTest, ZeroTransform)
TEST_F(AnimationTransformStyleInterpolationTest, SingleUnitTransform)
{
- RefPtr<CSSValueList> result = CSSValueList::createSpaceSeparated();
+ RefPtrWillBeRawPtr<CSSValueList> result = CSSValueList::createSpaceSeparated();
RefPtrWillBeRawPtr<CSSTransformValue> transform = CSSTransformValue::create(CSSTransformValue::PerspectiveTransformOperation);
transform->append(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX));
« no previous file with comments | « Source/core/animation/TransformStyleInterpolation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698