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

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

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 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/ListStyleInterpolation.h ('k') | Source/core/animation/NonInterpolableValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ListStyleInterpolationTest.cpp
diff --git a/Source/core/animation/ListStyleInterpolationTest.cpp b/Source/core/animation/ListStyleInterpolationTest.cpp
index 0123d87ee04546d2fdd4d133c9af6ec701724283..75d0698391d4951464b6734aaecce72db26bfd26 100644
--- a/Source/core/animation/ListStyleInterpolationTest.cpp
+++ b/Source/core/animation/ListStyleInterpolationTest.cpp
@@ -18,7 +18,7 @@ protected:
static PassRefPtrWillBeRawPtr<CSSValue> lengthRoundTrip(PassRefPtrWillBeRawPtr<CSSValue> value, InterpolationRange range)
{
return ListStyleInterpolationImpl<LengthStyleInterpolation, void>::interpolableValueToList(
- ListStyleInterpolationImpl<LengthStyleInterpolation, void>::listToInterpolableValue(*value).get(), range);
+ ListStyleInterpolationImpl<LengthStyleInterpolation, void>::listToInterpolableValue(*value), range);
}
static void compareLengthLists(PassRefPtrWillBeRawPtr<CSSValueList> expectedList, PassRefPtrWillBeRawPtr<CSSValue> actualList)
@@ -40,7 +40,7 @@ protected:
{
Vector<bool> nonInterpolableData;
return ListStyleInterpolationImpl<ShadowStyleInterpolation, bool>::interpolableValueToList(
- ListStyleInterpolationImpl<ShadowStyleInterpolation, bool>::listToInterpolableValue(*value, &nonInterpolableData).get(), nonInterpolableData);
+ ListStyleInterpolationImpl<ShadowStyleInterpolation, bool>::listToInterpolableValue(*value, &nonInterpolableData), nonInterpolableData);
}
static RefPtrWillBeRawPtr<CSSShadowValue> createShadowValue()
« no previous file with comments | « Source/core/animation/ListStyleInterpolation.h ('k') | Source/core/animation/NonInterpolableValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698