Chromium Code Reviews

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

Issue 23886003: Have HTMLElements / SVGElements constructors take a Document reference in argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests build Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/svg/SVGFEColorMatrixElement.h
diff --git a/Source/core/svg/SVGFEColorMatrixElement.h b/Source/core/svg/SVGFEColorMatrixElement.h
index 095e51413b5e167a77a2181d427e974eb1f4e0e1..acd3616f41543be20ed2348e83dabe85ff4e4418 100644
--- a/Source/core/svg/SVGFEColorMatrixElement.h
+++ b/Source/core/svg/SVGFEColorMatrixElement.h
@@ -67,10 +67,10 @@ struct SVGPropertyTraits<ColorMatrixType> {
class SVGFEColorMatrixElement FINAL : public SVGFilterPrimitiveStandardAttributes {
public:
- static PassRefPtr<SVGFEColorMatrixElement> create(const QualifiedName&, Document*);
+ static PassRefPtr<SVGFEColorMatrixElement> create(const QualifiedName&, Document&);
private:
- SVGFEColorMatrixElement(const QualifiedName&, Document*);
+ SVGFEColorMatrixElement(const QualifiedName&, Document&);
bool isSupportedAttribute(const QualifiedName&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;

Powered by Google App Engine