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

Unified Diff: Source/core/dom/Text.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/dom/Text.cpp
diff --git a/Source/core/dom/Text.cpp b/Source/core/dom/Text.cpp
index e78e44e11190846d2e968b5b82d91136187a7b91..b85e066a4606641dd3ae00a70dfe465de729d176 100644
--- a/Source/core/dom/Text.cpp
+++ b/Source/core/dom/Text.cpp
@@ -352,4 +352,9 @@ void Text::formatForDebugger(char *buffer, unsigned length) const
}
#endif
+void Text::acceptHeapVisitor(Visitor* visitor) const
+{
+ CharacterData::acceptHeapVisitor(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698