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

Unified Diff: Source/core/html/HTMLBRElement.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/html/HTMLBRElement.h ('k') | Source/core/html/HTMLBaseElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLBRElement.cpp
diff --git a/Source/core/html/HTMLBRElement.cpp b/Source/core/html/HTMLBRElement.cpp
index 82e4607440a1e56326edf819e94a53bdf0aad1d5..11b02a308b1638fe742c83786f2d98c31fc09279 100644
--- a/Source/core/html/HTMLBRElement.cpp
+++ b/Source/core/html/HTMLBRElement.cpp
@@ -80,4 +80,9 @@ RenderObject* HTMLBRElement::createRenderer(RenderArena* arena, RenderStyle* sty
return new (arena) RenderBR(this);
}
+void HTMLBRElement::acceptHeapVisitor(Visitor* visitor) const
+{
+ HTMLElement::acceptHeapVisitor(visitor);
+}
+
}
« no previous file with comments | « Source/core/html/HTMLBRElement.h ('k') | Source/core/html/HTMLBaseElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698