| Index: Source/core/html/HTMLFormControlElement.h
|
| diff --git a/Source/core/html/HTMLFormControlElement.h b/Source/core/html/HTMLFormControlElement.h
|
| index 8cfc90c0e7aa8f11f02b159e75316ee1592dd064..66be2d336f5cb3ce46ba0af3d50087c9551437e4 100644
|
| --- a/Source/core/html/HTMLFormControlElement.h
|
| +++ b/Source/core/html/HTMLFormControlElement.h
|
| @@ -56,10 +56,10 @@ public:
|
| virtual bool formControlValueMatchesRenderer() const { return m_valueMatchesRenderer; }
|
| virtual void setFormControlValueMatchesRenderer(bool b) { m_valueMatchesRenderer = b; }
|
|
|
| - virtual bool wasChangedSinceLastFormControlChangeEvent() const OVERRIDE FINAL;
|
| - virtual void setChangedSinceLastFormControlChangeEvent(bool) OVERRIDE FINAL;
|
| + bool wasChangedSinceLastFormControlChangeEvent() const { return m_wasChangedSinceLastFormControlChangeEvent; }
|
| + void setChangedSinceLastFormControlChangeEvent(bool);
|
|
|
| - virtual void dispatchFormControlChangeEvent() OVERRIDE;
|
| + virtual void dispatchFormControlChangeEvent();
|
| void dispatchChangeEvent();
|
| void dispatchFormControlInputEvent();
|
|
|
| @@ -73,7 +73,7 @@ public:
|
|
|
| const AtomicString& type() const { return formControlType(); }
|
|
|
| - virtual const AtomicString& formControlType() const OVERRIDE = 0;
|
| + virtual const AtomicString& formControlType() const = 0;
|
|
|
| virtual bool canTriggerImplicitSubmission() const { return false; }
|
|
|
|
|