Chromium Code Reviews

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

Issue 23886003: Have HTMLElements / SVGElements constructors take a Document reference in argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Another Android build fix 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
« no previous file with comments | « Source/core/svg/SVGFEOffsetElement.cpp ('k') | Source/core/svg/SVGFEPointLightElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFEPointLightElement.h
diff --git a/Source/core/svg/SVGFEPointLightElement.h b/Source/core/svg/SVGFEPointLightElement.h
index b27f82311f2507e3589a3171723dcaa7f33479c2..10bdec9e04a7a0044b8bb2d80b54fa5670a7574d 100644
--- a/Source/core/svg/SVGFEPointLightElement.h
+++ b/Source/core/svg/SVGFEPointLightElement.h
@@ -26,10 +26,10 @@ namespace WebCore {
class SVGFEPointLightElement FINAL : public SVGFELightElement {
public:
- static PassRefPtr<SVGFEPointLightElement> create(const QualifiedName&, Document*);
+ static PassRefPtr<SVGFEPointLightElement> create(const QualifiedName&, Document&);
private:
- SVGFEPointLightElement(const QualifiedName&, Document*);
+ SVGFEPointLightElement(const QualifiedName&, Document&);
virtual PassRefPtr<LightSource> lightSource() const;
};
« no previous file with comments | « Source/core/svg/SVGFEOffsetElement.cpp ('k') | Source/core/svg/SVGFEPointLightElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine