Index: Source/core/dom/ElementRareData.h |
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h |
index f687588e85b4527cb2fb0605146e7385fdb41fb0..e19bb926710f1d42e26a43a212d48a4e39a32c53 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; |