Chromium Code Reviews

Unified Diff: Source/core/svg/SVGFEFuncRElement.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/SVGFEFuncRElement.h
diff --git a/Source/core/svg/SVGFEFuncRElement.h b/Source/core/svg/SVGFEFuncRElement.h
index f467f5fcd7aeed208c88abe052331c1992c6966e..8b76e467bd64dd62494cda6c5720266e688232f9 100644
--- a/Source/core/svg/SVGFEFuncRElement.h
+++ b/Source/core/svg/SVGFEFuncRElement.h
@@ -27,10 +27,10 @@ namespace WebCore {
class SVGFEFuncRElement FINAL : public SVGComponentTransferFunctionElement {
public:
- static PassRefPtr<SVGFEFuncRElement> create(const QualifiedName&, Document*);
+ static PassRefPtr<SVGFEFuncRElement> create(const QualifiedName&, Document&);
private:
- SVGFEFuncRElement(const QualifiedName&, Document*);
+ SVGFEFuncRElement(const QualifiedName&, Document&);
};
} // namespace WebCore

Powered by Google App Engine