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

Unified Diff: Source/core/html/forms/BaseCheckableInputType.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
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
« no previous file with comments | « Source/core/html/forms/BaseButtonInputType.h ('k') | Source/core/html/forms/BaseChooserOnlyDateAndTimeInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698