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

Unified Diff: Source/core/svg/SVGFilterPrimitiveStandardAttributes.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/SVGFilterPrimitiveStandardAttributes.h
diff --git a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
index b3352bf85053a934362ae4696e7bf60a8e7f8ea9..821c6618a493b9f38cd352787524ada790900dee 100644
--- a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
+++ b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
@@ -46,6 +46,8 @@ public:
// Returns true, if the new value is different from the old one.
virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&);
+ virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledElement::accept(visitor); }
+
protected:
SVGFilterPrimitiveStandardAttributes(const QualifiedName&, const Handle<Document>&);

Powered by Google App Engine
This is Rietveld 408576698