| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index 79bd788cbc41f909dbe71f3f4a9711658c050731..6b887b03e2d7f065feae0e981eb22619a6254f72 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -187,7 +187,7 @@ public:
|
|
|
| virtual bool rendererIsNeeded(const NodeRenderingContext&);
|
| virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
|
| - virtual void detach();
|
| + virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
|
|
|
| // FIXME: For isActivatedSubmit and setActivatedSubmit, we should use the NVI-idiom here by making
|
| // it private virtual in all classes and expose a public method in HTMLFormControlElement to call
|
| @@ -341,7 +341,7 @@ private:
|
|
|
| virtual void copyNonAttributePropertiesFromElement(const Element&);
|
|
|
| - virtual void attach();
|
| + virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
|
|
|
| virtual bool appendFormData(FormDataList&, bool);
|
|
|
|
|