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

Unified Diff: Source/core/html/HTMLTableSectionElement.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/HTMLTableSectionElement.h
diff --git a/Source/core/html/HTMLTableSectionElement.h b/Source/core/html/HTMLTableSectionElement.h
index 16bc09aaf3319e0e21798a5eb5008bbf887b1231..f2d271b0e26faecf0d5722673c4d92dfe7f555c1 100644
--- a/Source/core/html/HTMLTableSectionElement.h
+++ b/Source/core/html/HTMLTableSectionElement.h
@@ -34,7 +34,7 @@ class ExceptionState;
class HTMLTableSectionElement FINAL : public HTMLTablePartElement {
public:
- static PassRefPtr<HTMLTableSectionElement> create(const QualifiedName&, Document*);
+ static PassRefPtr<HTMLTableSectionElement> create(const QualifiedName&, Document&);
PassRefPtr<HTMLElement> insertRow(int index, ExceptionState&);
void deleteRow(int index, ExceptionState&);
@@ -56,7 +56,7 @@ public:
PassRefPtr<HTMLCollection> rows();
private:
- HTMLTableSectionElement(const QualifiedName& tagName, Document*);
+ HTMLTableSectionElement(const QualifiedName& tagName, Document&);
virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERRIDE;
};

Powered by Google App Engine
This is Rietveld 408576698