| Index: Source/core/html/forms/RadioInputType.h
|
| diff --git a/Source/core/html/forms/RadioInputType.h b/Source/core/html/forms/RadioInputType.h
|
| index 8a35d1e9be1833478c27a12539f070f1efe6602d..cab15bfa392bd3d790d8d2a52962b8206e9bece8 100644
|
| --- a/Source/core/html/forms/RadioInputType.h
|
| +++ b/Source/core/html/forms/RadioInputType.h
|
| @@ -41,17 +41,18 @@ public:
|
|
|
| private:
|
| RadioInputType(HTMLInputElement& element) : BaseCheckableInputType(element) { }
|
| - virtual const AtomicString& formControlType() const override;
|
| - virtual bool valueMissing(const String&) const override;
|
| - virtual String valueMissingText() const override;
|
| - virtual void handleClickEvent(MouseEvent*) override;
|
| - virtual void handleKeydownEvent(KeyboardEvent*) override;
|
| - virtual void handleKeyupEvent(KeyboardEvent*) override;
|
| - virtual bool isKeyboardFocusable() const override;
|
| - virtual bool shouldSendChangeEventAfterCheckedChanged() override;
|
| - virtual PassOwnPtrWillBeRawPtr<ClickHandlingState> willDispatchClick() override;
|
| - virtual void didDispatchClick(Event*, const ClickHandlingState&) override;
|
| - virtual bool shouldAppearIndeterminate() const override;
|
| + const AtomicString& formControlType() const override;
|
| + bool valueMissing(const String&) const override;
|
| + String valueMissingText() const override;
|
| + void handleClickEvent(MouseEvent*) override;
|
| + void handleKeydownEvent(KeyboardEvent*) override;
|
| + void handleKeyupEvent(KeyboardEvent*) override;
|
| + bool isKeyboardFocusable() const override;
|
| + bool shouldSendChangeEventAfterCheckedChanged() override;
|
| + PassOwnPtrWillBeRawPtr<ClickHandlingState> willDispatchClick() override;
|
| + void didDispatchClick(Event*, const ClickHandlingState&) override;
|
| + bool shouldAppearIndeterminate() const override;
|
| +
|
| HTMLInputElement* findNextFocusableRadioButtonInGroup(HTMLInputElement*, bool);
|
| };
|
|
|
|
|