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

Unified Diff: Source/core/html/shadow/InsertionPoint.cpp

Issue 20123003: [oilpan] The Node hierarchy should have correct accept method chains (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 5 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/shadow/InsertionPoint.cpp
diff --git a/Source/core/html/shadow/InsertionPoint.cpp b/Source/core/html/shadow/InsertionPoint.cpp
index 3fa0426d25d988dd2888ca9c0aa055f0d65e05c4..201eb22e75a5b78b656c0ed35f8a853d66e640d3 100644
--- a/Source/core/html/shadow/InsertionPoint.cpp
+++ b/Source/core/html/shadow/InsertionPoint.cpp
@@ -253,4 +253,9 @@ void collectInsertionPointsWhereNodeIsDistributed(const Node* node, Vector<Inser
}
}
+void InsertionPoint::acceptHeapVisitor(Visitor* visitor) const
+{
+ HTMLElement::acceptHeapVisitor(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698