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

Unified Diff: Source/core/html/HTMLLinkElement.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/html/HTMLLinkElement.cpp
diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp
index f85d7e86fe6e8e5c8f8a36ba1cdd5b3cd2b192f6..247fac00abd5e3fc9571b534943417094bae0ab4 100644
--- a/Source/core/html/HTMLLinkElement.cpp
+++ b/Source/core/html/HTMLLinkElement.cpp
@@ -419,6 +419,12 @@ DOMSettableTokenList* HTMLLinkElement::sizes() const
return m_sizes.get();
}
+void HTMLLinkElement::trace(Visitor* visitor)
+{
+ visitor->trace(m_sizes);
+ HTMLElement::trace(visitor);
+}
+
PassOwnPtr<LinkStyle> LinkStyle::create(HTMLLinkElement* owner)
{
return adoptPtr(new LinkStyle(owner));

Powered by Google App Engine
This is Rietveld 408576698