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

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

Issue 932403002: InlinedVisitor: Migrate html to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/HTMLElementStack.h ('k') | Source/core/html/parser/HTMLFormattingElementList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLElementStack.cpp
diff --git a/Source/core/html/parser/HTMLElementStack.cpp b/Source/core/html/parser/HTMLElementStack.cpp
index b90671170b1a5143b95333ec70e160c6ff18d672..2df710ab702c51d07d396cbc28022d1bcbcc8075 100644
--- a/Source/core/html/parser/HTMLElementStack.cpp
+++ b/Source/core/html/parser/HTMLElementStack.cpp
@@ -149,7 +149,7 @@ bool HTMLElementStack::ElementRecord::isAbove(ElementRecord* other) const
return false;
}
-void HTMLElementStack::ElementRecord::trace(Visitor* visitor)
+DEFINE_TRACE(HTMLElementStack::ElementRecord)
{
#if ENABLE(OILPAN)
visitor->trace(m_item);
@@ -616,7 +616,7 @@ HTMLElementStack::ElementRecord* HTMLElementStack::furthestBlockForFormattingEle
return nullptr;
}
-void HTMLElementStack::trace(Visitor* visitor)
+DEFINE_TRACE(HTMLElementStack)
{
visitor->trace(m_top);
visitor->trace(m_rootNode);
« no previous file with comments | « Source/core/html/parser/HTMLElementStack.h ('k') | Source/core/html/parser/HTMLFormattingElementList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698