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

Unified Diff: Source/core/svg/SVGTRefElement.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/svg/SVGTRefElement.h
diff --git a/Source/core/svg/SVGTRefElement.h b/Source/core/svg/SVGTRefElement.h
index 2ca2ac7fccb23088ceed201e58c995faa1cd0efc..6d28a7f44063fc13a261d54ed0a0ad57060ec48a 100644
--- a/Source/core/svg/SVGTRefElement.h
+++ b/Source/core/svg/SVGTRefElement.h
@@ -31,12 +31,12 @@ class SVGTRefTargetEventListener;
class SVGTRefElement FINAL : public SVGTextPositioningElement,
public SVGURIReference {
public:
- static PassRefPtr<SVGTRefElement> create(const QualifiedName&, Document*);
+ static PassRefPtr<SVGTRefElement> create(const QualifiedName&, Document&);
private:
friend class SVGTRefTargetEventListener;
- SVGTRefElement(const QualifiedName&, Document*);
+ SVGTRefElement(const QualifiedName&, Document&);
virtual ~SVGTRefElement();
bool isSupportedAttribute(const QualifiedName&);

Powered by Google App Engine
This is Rietveld 408576698