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

Unified Diff: Source/core/dom/Comment.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
« no previous file with comments | « Source/core/dom/Comment.h ('k') | Source/core/dom/ContainerNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Comment.cpp
diff --git a/Source/core/dom/Comment.cpp b/Source/core/dom/Comment.cpp
index 9d66bd35f09fbe1245dda534dc53426d2406e41c..6c20cf7c4a5d19f7cd2ed9d00d1732ce304bce35 100644
--- a/Source/core/dom/Comment.cpp
+++ b/Source/core/dom/Comment.cpp
@@ -57,4 +57,9 @@ bool Comment::childTypeAllowed(NodeType) const
return false;
}
+void Comment::acceptHeapVisitor(Visitor* visitor) const
+{
+ CharacterData::acceptHeapVisitor(visitor);
+}
+
} // namespace WebCore
« no previous file with comments | « Source/core/dom/Comment.h ('k') | Source/core/dom/ContainerNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698