| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index ffd9f6fb2d189631f9e53ffe6b3061ec318efbb0..6093e09d5eac1466c7c59113e558b20d2b4591e3 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -135,7 +135,7 @@ public:
|
|
|
| void setType(const AtomicString&);
|
|
|
| - String value() const;
|
| + virtual String value() const OVERRIDE;
|
| void setValue(const String&, ExceptionState&, TextFieldEventBehavior = DispatchNoEvent);
|
| void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent);
|
| void setValueForUser(const String&);
|
| @@ -277,7 +277,7 @@ public:
|
| protected:
|
| HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);
|
|
|
| - virtual void defaultEventHandler(Event*);
|
| + virtual void defaultEventHandler(Event*) OVERRIDE;
|
|
|
| private:
|
| enum AutoCompleteSetting { Uninitialized, On, Off };
|
|
|