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

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

Issue 463543002: Oilpan: Ensure that classes with virtual trace methods always have vtables for their left-most base… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/SVGFEImageElement.h
diff --git a/Source/core/svg/SVGFEImageElement.h b/Source/core/svg/SVGFEImageElement.h
index 6a41197089aa95e9f1c1138e749345f95b206ad3..02ac2d5d647b77294bde652cfcf7388932192522 100644
--- a/Source/core/svg/SVGFEImageElement.h
+++ b/Source/core/svg/SVGFEImageElement.h
@@ -44,6 +44,12 @@ public:
virtual ~SVGFEImageElement();
SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAspectRatio.get(); }
+ virtual void trace(Visitor* visitor) OVERRIDE
+ {
+ SVGFilterPrimitiveStandardAttributes::trace(visitor);
+ ImageResourceClient::trace(visitor);
+ }
+
private:
explicit SVGFEImageElement(Document&);

Powered by Google App Engine
This is Rietveld 408576698