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

Unified Diff: Source/core/dom/CDATASection.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/CDATASection.h ('k') | Source/core/dom/CharacterData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CDATASection.cpp
diff --git a/Source/core/dom/CDATASection.cpp b/Source/core/dom/CDATASection.cpp
index a26b428fe3b9f7b5a1fc27af52b1749a1653e621..ec957ec5448eeee2869cef72953c6f1133f1199f 100644
--- a/Source/core/dom/CDATASection.cpp
+++ b/Source/core/dom/CDATASection.cpp
@@ -62,4 +62,9 @@ PassRefPtr<Text> CDATASection::virtualCreate(const String& data)
return create(document(), data);
}
+void CDATASection::acceptHeapVisitor(Visitor* visitor) const
+{
+ Text::acceptHeapVisitor(visitor);
+}
+
} // namespace WebCore
« no previous file with comments | « Source/core/dom/CDATASection.h ('k') | Source/core/dom/CharacterData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698