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

Unified Diff: Source/core/html/forms/ColorInputType.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/CheckboxInputType.h ('k') | Source/core/html/forms/ColorInputType.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/ColorInputType.h
diff --git a/Source/core/html/forms/ColorInputType.h b/Source/core/html/forms/ColorInputType.h
index 9fb8ca37d2995a3e77fd8bc251da3d57aeb18d8a..d7062b7dee7b8d0d0d7208b151ece57f530cdc55 100644
--- a/Source/core/html/forms/ColorInputType.h
+++ b/Source/core/html/forms/ColorInputType.h
@@ -46,31 +46,31 @@ public:
DECLARE_VIRTUAL_TRACE();
// ColorChooserClient implementation.
- virtual void didChooseColor(const Color&) override;
- virtual void didEndChooser() override;
- virtual Element& ownerElement() const override;
- virtual IntRect elementRectRelativeToRootView() const override;
- virtual Color currentColor() override;
- virtual bool shouldShowSuggestions() const override;
- virtual Vector<ColorSuggestion> suggestions() const override;
+ void didChooseColor(const Color&) override;
+ void didEndChooser() override;
+ Element& ownerElement() const override;
+ IntRect elementRectRelativeToRootView() const override;
+ Color currentColor() override;
+ bool shouldShowSuggestions() const override;
+ Vector<ColorSuggestion> suggestions() const override;
ColorChooserClient* colorChooserClient() override;
private:
ColorInputType(HTMLInputElement& element) : BaseClickableWithKeyInputType(element) { }
- virtual void countUsage() override;
- virtual const AtomicString& formControlType() const override;
- virtual bool supportsRequired() const override;
- virtual String fallbackValue() const override;
- virtual String sanitizeValue(const String&) const override;
- virtual void createShadowSubtree() override;
- virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
- virtual void handleDOMActivateEvent(Event*) override;
- virtual void closePopupView() override;
- virtual bool shouldRespectListAttribute() override;
- virtual bool typeMismatchFor(const String&) const override;
- virtual void warnIfValueIsInvalid(const String&) const override;
- virtual void updateView() override;
- virtual AXObject* popupRootAXObject() override;
+ void countUsage() override;
+ const AtomicString& formControlType() const override;
+ bool supportsRequired() const override;
+ String fallbackValue() const override;
+ String sanitizeValue(const String&) const override;
+ void createShadowSubtree() override;
+ void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
+ void handleDOMActivateEvent(Event*) override;
+ void closePopupView() override;
+ bool shouldRespectListAttribute() override;
+ bool typeMismatchFor(const String&) const override;
+ void warnIfValueIsInvalid(const String&) const override;
+ void updateView() override;
+ AXObject* popupRootAXObject() override;
Color valueAsColor() const;
void endColorChooser();
« no previous file with comments | « Source/core/html/forms/CheckboxInputType.h ('k') | Source/core/html/forms/ColorInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698