| Index: Source/core/html/forms/BaseCheckableInputType.h
|
| diff --git a/Source/core/html/forms/BaseCheckableInputType.h b/Source/core/html/forms/BaseCheckableInputType.h
|
| index 5768813665eb4ef9e58b9561af364b639f004148..27b10ba8157c26e5bfe06afc13557dc7c960c33f 100644
|
| --- a/Source/core/html/forms/BaseCheckableInputType.h
|
| +++ b/Source/core/html/forms/BaseCheckableInputType.h
|
| @@ -39,20 +39,20 @@ namespace blink {
|
| class BaseCheckableInputType : public InputType {
|
| protected:
|
| BaseCheckableInputType(HTMLInputElement& element) : InputType(element) { }
|
| - virtual void handleKeydownEvent(KeyboardEvent*) override;
|
| + void handleKeydownEvent(KeyboardEvent*) override;
|
|
|
| private:
|
| - virtual FormControlState saveFormControlState() const override final;
|
| - virtual void restoreFormControlState(const FormControlState&) override final;
|
| - virtual bool appendFormData(FormDataList&, bool) const override final;
|
| - virtual void handleKeypressEvent(KeyboardEvent*) override final;
|
| - virtual bool canSetStringValue() const override final;
|
| - virtual void accessKeyAction(bool sendMouseEvents) override final;
|
| - virtual String fallbackValue() const override final;
|
| - virtual bool storesValueSeparateFromAttribute() override final;
|
| - virtual void setValue(const String&, bool, TextFieldEventBehavior) override final;
|
| - virtual bool isCheckable() override final;
|
| - virtual bool shouldDispatchFormControlChangeEvent(String&, String&) override;
|
| + FormControlState saveFormControlState() const final;
|
| + void restoreFormControlState(const FormControlState&) final;
|
| + bool appendFormData(FormDataList&, bool) const final;
|
| + void handleKeypressEvent(KeyboardEvent*) final;
|
| + bool canSetStringValue() const final;
|
| + void accessKeyAction(bool sendMouseEvents) final;
|
| + String fallbackValue() const final;
|
| + bool storesValueSeparateFromAttribute() final;
|
| + void setValue(const String&, bool, TextFieldEventBehavior) final;
|
| + bool isCheckable() final;
|
| + bool shouldDispatchFormControlChangeEvent(String&, String&) override;
|
| };
|
|
|
| } // namespace blink
|
|
|