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

Unified Diff: Source/core/dom/Entity.h

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/Element.cpp ('k') | Source/core/dom/EntityReference.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Entity.h
diff --git a/Source/core/dom/Entity.h b/Source/core/dom/Entity.h
index d8535f4779cdd73ec4a624e97152347d1cb15f5c..68a996c4126271cf325d191235a2d057f33d1f7c 100644
--- a/Source/core/dom/Entity.h
+++ b/Source/core/dom/Entity.h
@@ -33,6 +33,11 @@ public:
String systemId() const { ASSERT_NOT_REACHED(); return String(); }
String notationName() const { ASSERT_NOT_REACHED(); return String(); }
+ void acceptHeapVisitor(Visitor* visitor) const OVERRIDE
+ {
+ ContainerNode::acceptHeapVisitor(visitor);
+ }
+
private:
Entity() : ContainerNode(nullptr)
{
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/EntityReference.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698