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

Unified Diff: Source/core/svg/SVGRectElement.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/SVGRectElement.h
diff --git a/Source/core/svg/SVGRectElement.h b/Source/core/svg/SVGRectElement.h
index 6a15eb446263238c11c1dc120ecc9fe00404f40c..1a745906bde4ef907713d879ea3cf4bd926132a0 100644
--- a/Source/core/svg/SVGRectElement.h
+++ b/Source/core/svg/SVGRectElement.h
@@ -39,6 +39,8 @@ class SVGRectElement : public SVGStyledTransformableElement,
public:
static PassRefPtr<SVGRectElement> create(const QualifiedName&, const Handle<Document>&);
+ virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledTransformableElement::accept(visitor); }
+
private:
SVGRectElement(const QualifiedName&, const Handle<Document>&);

Powered by Google App Engine
This is Rietveld 408576698