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

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

Issue 947393002: InlinedVisitor: Migrate dom 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
Index: Source/core/dom/DocumentOrderedMap.cpp
diff --git a/Source/core/dom/DocumentOrderedMap.cpp b/Source/core/dom/DocumentOrderedMap.cpp
index f71fcee109d1d714a3bfd16efdd6489a2b494b55..e4916383e5af78b8e6da09d63f126c50541afba2 100644
--- a/Source/core/dom/DocumentOrderedMap.cpp
+++ b/Source/core/dom/DocumentOrderedMap.cpp
@@ -179,14 +179,14 @@ Element* DocumentOrderedMap::getElementByLabelForAttribute(const AtomicString& k
return get<keyMatchesLabelForAttribute>(key, scope);
}
-void DocumentOrderedMap::trace(Visitor* visitor)
+DEFINE_TRACE(DocumentOrderedMap)
{
#if ENABLE(OILPAN)
visitor->trace(m_map);
#endif
}
-void DocumentOrderedMap::MapEntry::trace(Visitor* visitor)
+DEFINE_TRACE(DocumentOrderedMap::MapEntry)
{
visitor->trace(element);
#if ENABLE(OILPAN)

Powered by Google App Engine
This is Rietveld 408576698