Chromium Code Reviews

Unified Diff: Source/core/html/forms/BaseButtonInputType.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | Source/core/html/forms/BaseCheckableInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/BaseButtonInputType.h
diff --git a/Source/core/html/forms/BaseButtonInputType.h b/Source/core/html/forms/BaseButtonInputType.h
index c8da6d1ed4b75dd76f2052cd91ebed54ac751793..01cd08809b92b8a201c4c4062fda7205a3599c17 100644
--- a/Source/core/html/forms/BaseButtonInputType.h
+++ b/Source/core/html/forms/BaseButtonInputType.h
@@ -39,15 +39,15 @@ namespace blink {
class BaseButtonInputType : public BaseClickableWithKeyInputType {
protected:
BaseButtonInputType(HTMLInputElement& element) : BaseClickableWithKeyInputType(element) { }
- virtual void valueAttributeChanged() override;
- virtual void createShadowSubtree() override;
+ void valueAttributeChanged() override;
+ void createShadowSubtree() override;
private:
- virtual bool shouldSaveAndRestoreFormControlState() const override;
- virtual bool appendFormData(FormDataList&, bool) const override;
- virtual LayoutObject* createRenderer(const LayoutStyle&) const override;
- virtual bool storesValueSeparateFromAttribute() override;
- virtual void setValue(const String&, bool, TextFieldEventBehavior) override;
+ bool shouldSaveAndRestoreFormControlState() const override;
+ bool appendFormData(FormDataList&, bool) const override;
+ LayoutObject* createRenderer(const LayoutStyle&) const override;
+ bool storesValueSeparateFromAttribute() override;
+ void setValue(const String&, bool, TextFieldEventBehavior) override;
};
} // namespace blink
« no previous file with comments | « no previous file | Source/core/html/forms/BaseCheckableInputType.h » ('j') | no next file with comments »

Powered by Google App Engine