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

Unified Diff: Source/core/dom/ElementRareData.h

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/dom/Element.cpp ('k') | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ElementRareData.h
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h
index bcd739cf05d7d796782502e1998914bdb2390157..bcf990dca893a9073661d717c89a46de8f822089 100644
--- a/Source/core/dom/ElementRareData.h
+++ b/Source/core/dom/ElementRareData.h
@@ -102,7 +102,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;
}
@@ -141,7 +141,7 @@ private:
OwnPtrWillBeMember<ElementShadow> m_shadow;
OwnPtrWillBeMember<NamedNodeMap> m_attributeMap;
OwnPtrWillBeMember<AttrNodeList> m_attrNodeList;
- OwnPtrWillBeMember<ElementAnimations> m_elementAnimations;
+ PersistentWillBeMember<ElementAnimations> m_elementAnimations;
OwnPtrWillBeMember<InlineCSSStyleDeclaration> m_cssomWrapper;
RefPtr<ComputedStyle> m_computedStyle;
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698