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

Unified Diff: Source/core/animation/TransformStyleInterpolation.h

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 | « no previous file | Source/core/animation/TransformStyleInterpolation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/TransformStyleInterpolation.h
diff --git a/Source/core/animation/TransformStyleInterpolation.h b/Source/core/animation/TransformStyleInterpolation.h
index 9fa9a0bac6fe9af5cff298119c771604cbf55f77..5f65adbb34bd1c75fa410a4cd2b25e25bde51758 100644
--- a/Source/core/animation/TransformStyleInterpolation.h
+++ b/Source/core/animation/TransformStyleInterpolation.h
@@ -17,7 +17,7 @@ public:
if (!canCreateFrom(start) || !canCreateFrom(end))
return nullptr;
ASSERT(!TransformStyleInterpolation::fallBackToLegacy(start, end));
- WillBeHeapVector<CSSTransformValue::TransformOperationType> types;
+ Vector<CSSTransformValue::TransformOperationType> types;
if (start.isPrimitiveValue() && end.isPrimitiveValue())
return adoptRefWillBeNoop(new TransformStyleInterpolation(transformToInterpolableValue(start), transformToInterpolableValue(end), id, types));
const CSSValueList* startList = toCSSValueList(&start);
@@ -35,7 +35,7 @@ public:
virtual void trace(Visitor*) override;
private:
- TransformStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, WillBeHeapVector<CSSTransformValue::TransformOperationType> types)
+ TransformStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, Vector<CSSTransformValue::TransformOperationType> types)
: StyleInterpolation(start, end, id)
, m_types(types)
{ }
@@ -43,9 +43,9 @@ private:
static bool canCreateFrom(const CSSValue&);
static PassOwnPtrWillBeRawPtr<InterpolableValue> transformToInterpolableValue(CSSValue&);
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToTransform(InterpolableValue*, WillBeHeapVector<CSSTransformValue::TransformOperationType> types);
+ static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToTransform(InterpolableValue*, Vector<CSSTransformValue::TransformOperationType> types);
- WillBeHeapVector<CSSTransformValue::TransformOperationType> m_types;
+ Vector<CSSTransformValue::TransformOperationType> m_types;
friend class AnimationTransformStyleInterpolationTest;
};
« no previous file with comments | « no previous file | Source/core/animation/TransformStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698