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

Unified Diff: Source/core/svg/SVGTextPathElement.h

Issue 24527003: [oilpan] Implement accept methods to trace the class hierarchy of SVGElement and all sub-classes. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 3 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/svg/SVGTextPathElement.h
diff --git a/Source/core/svg/SVGTextPathElement.h b/Source/core/svg/SVGTextPathElement.h
index 20e91be0f6a6c9ec66a9680df2c94aa88062eede..8c72f096b4f6898fa7a16bb14a995e13ecf81c3d 100644
--- a/Source/core/svg/SVGTextPathElement.h
+++ b/Source/core/svg/SVGTextPathElement.h
@@ -112,7 +112,9 @@ public:
};
static PassRefPtr<SVGTextPathElement> create(const QualifiedName&, const Handle<Document>&);
-
+
+ virtual void accept(Visitor* visitor) const OVERRIDE { SVGTextContentElement::accept(visitor); }
+
private:
SVGTextPathElement(const QualifiedName&, const Handle<Document>&);

Powered by Google App Engine
This is Rietveld 408576698