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

Unified Diff: Source/core/html/parser/HTMLConstructionSite.cpp

Issue 310793002: Oilpan: trace HTMLConstructionSite::PendingText part object. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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/html/parser/HTMLConstructionSite.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLConstructionSite.cpp
diff --git a/Source/core/html/parser/HTMLConstructionSite.cpp b/Source/core/html/parser/HTMLConstructionSite.cpp
index 3d0d5edc85a4039df6c5fe48548f9fdc0239438c..74390aa2b5be99c4d31b8121582df16d74bf14ba 100644
--- a/Source/core/html/parser/HTMLConstructionSite.cpp
+++ b/Source/core/html/parser/HTMLConstructionSite.cpp
@@ -355,6 +355,7 @@ void HTMLConstructionSite::trace(Visitor* visitor)
visitor->trace(m_openElements);
visitor->trace(m_activeFormattingElements);
visitor->trace(m_taskQueue);
+ visitor->trace(m_pendingText);
}
void HTMLConstructionSite::detach()
@@ -868,4 +869,11 @@ void HTMLConstructionSite::fosterParent(PassRefPtrWillBeRawPtr<Node> node)
queueTask(task);
}
+void HTMLConstructionSite::PendingText::trace(Visitor* visitor)
+{
+ visitor->trace(parent);
+ visitor->trace(nextChild);
+}
+
+
}
« no previous file with comments | « Source/core/html/parser/HTMLConstructionSite.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698