Index: Source/core/html/HTMLFormControlElement.h |
diff --git a/Source/core/html/HTMLFormControlElement.h b/Source/core/html/HTMLFormControlElement.h |
index 8cfc90c0e7aa8f11f02b159e75316ee1592dd064..a9cddab5f97297150c761c38f194fcb23efa3d16 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; } |
@@ -109,6 +109,8 @@ public: |
String nameForAutofill() const; |
+ virtual void setFocus(bool flag) OVERRIDE; |
+ |
using Node::ref; |
using Node::deref; |