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

Unified Diff: Source/core/dom/Element.cpp

Issue 258143002: Oilpan: move DOM string collection objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 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
Index: Source/core/dom/Element.cpp
diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
index 943459796b164060b9f801ac09003f4a163cf835..8bb8d21f0a0ff1880cebfbf203bd1ea70efe9982 100644
--- a/Source/core/dom/Element.cpp
+++ b/Source/core/dom/Element.cpp
@@ -3270,4 +3270,12 @@ bool Element::supportsStyleSharing() const
return true;
}
+void Element::trace(Visitor* visitor)
+{
+ if (hasRareData())
Mads Ager (chromium) 2014/04/29 09:05:14 Please add a FIXME: Oilpan that this should be rem
+ elementRareData()->trace(visitor);
+
+ ContainerNode::trace(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698