Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(967)

Unified Diff: Source/core/html/forms/RadioInputType.h

Issue 934163004: Modernize coding style in core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/forms/RadioButtonGroupScope.h ('k') | Source/core/html/forms/RangeInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « Source/core/html/forms/RadioButtonGroupScope.h ('k') | Source/core/html/forms/RangeInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698