| Index: Source/core/html/HTMLFieldSetElement.h
|
| diff --git a/Source/core/html/HTMLFieldSetElement.h b/Source/core/html/HTMLFieldSetElement.h
|
| index dce969a15e5b35216fca8aad525b6ff044a174d2..3825e0d70b758b6725f3f49370dbb3b38f466db2 100644
|
| --- a/Source/core/html/HTMLFieldSetElement.h
|
| +++ b/Source/core/html/HTMLFieldSetElement.h
|
| @@ -34,7 +34,7 @@ class HTMLCollection;
|
|
|
| class HTMLFieldSetElement : public HTMLFormControlElement {
|
| public:
|
| - static PassRefPtr<HTMLFieldSetElement> create(const QualifiedName&, Document*, HTMLFormElement*);
|
| + static Result<HTMLFieldSetElement> create(const QualifiedName&, Document*, HTMLFormElement*);
|
| HTMLLegendElement* legend() const;
|
|
|
| PassRefPtr<HTMLCollection> elements();
|
| @@ -42,6 +42,8 @@ public:
|
| const Vector<FormAssociatedElement*>& associatedElements() const;
|
| unsigned length() const;
|
|
|
| + virtual void acceptHeapVisitor(Visitor*) const OVERRIDE;
|
| +
|
| protected:
|
| virtual void disabledAttributeChanged() OVERRIDE;
|
|
|
|
|