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

Unified Diff: Source/core/html/HTMLHeadingElement.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/html/HTMLHeadingElement.h
diff --git a/Source/core/html/HTMLHeadingElement.h b/Source/core/html/HTMLHeadingElement.h
index c04bcfeda423e276ce0642f484490893a5ab0093..e99bac5867bf3bb59b776d1495a9761af1db71ab 100644
--- a/Source/core/html/HTMLHeadingElement.h
+++ b/Source/core/html/HTMLHeadingElement.h
@@ -29,10 +29,10 @@ namespace WebCore {
class HTMLHeadingElement FINAL : public HTMLElement {
public:
- static PassRefPtr<HTMLHeadingElement> create(const QualifiedName&, Document*);
+ static PassRefPtr<HTMLHeadingElement> create(const QualifiedName&, Document&);
private:
- HTMLHeadingElement(const QualifiedName&, Document*);
+ HTMLHeadingElement(const QualifiedName&, Document&);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698