Index: Source/core/dom/ElementRareData.h |
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h |
index ce9de66ca3b1ced022714e5aba28583ee3cb7321..ad34cfef56424e0cf63180fd6077b8a7c527b1e4 100644 |
--- a/Source/core/dom/ElementRareData.h |
+++ b/Source/core/dom/ElementRareData.h |
@@ -107,7 +107,7 @@ public: |
void setSavedLayerScrollOffset(IntSize size) { m_savedLayerScrollOffset = size; } |
ElementAnimations* elementAnimations() { return m_elementAnimations.get(); } |
- void setElementAnimations(PassOwnPtrWillBeRawPtr<ElementAnimations> elementAnimations) |
+ void setElementAnimations(ElementAnimations* elementAnimations) |
{ |
m_elementAnimations = elementAnimations; |
} |
@@ -154,7 +154,7 @@ private: |
OwnPtrWillBeMember<NamedNodeMap> m_attributeMap; |
OwnPtrWillBeMember<WillBeHeapVector<RefPtrWillBeMember<Attr>>> m_attrNodeList; |
OwnPtrWillBeMember<InputMethodContext> m_inputMethodContext; |
- OwnPtrWillBeMember<ElementAnimations> m_elementAnimations; |
+ PersistentWillBeMember<ElementAnimations> m_elementAnimations; |
OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper; |
RefPtr<ComputedStyle> m_computedStyle; |