Index: Source/core/dom/ElementRareData.h |
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h |
index f40beff086867fffb9092058a0f58ba7823b0028..213f906d7ec85b78b3512d56b0dfd6c22df0c0be 100644 |
--- a/Source/core/dom/ElementRareData.h |
+++ b/Source/core/dom/ElementRareData.h |
@@ -103,7 +103,7 @@ public: |
void setSavedLayerScrollOffset(IntSize size) { m_savedLayerScrollOffset = size; } |
ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); } |
- void setActiveAnimations(PassOwnPtr<ActiveAnimations> activeAnimations) |
+ void setActiveAnimations(PassOwnPtrWillBeRawPtr<ActiveAnimations> activeAnimations) |
{ |
m_activeAnimations = activeAnimations; |
} |
@@ -134,7 +134,7 @@ private: |
OwnPtr<ElementShadow> m_shadow; |
OwnPtr<NamedNodeMap> m_attributeMap; |
OwnPtr<InputMethodContext> m_inputMethodContext; |
- OwnPtr<ActiveAnimations> m_activeAnimations; |
+ OwnPtrWillBePersistent<ActiveAnimations> m_activeAnimations; |
OwnPtr<InlineCSSStyleDeclaration> m_cssomWrapper; |
RefPtr<RenderStyle> m_computedStyle; |