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

Unified Diff: Source/core/html/HTMLFieldSetElement.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/HTMLEmbedElement.h ('k') | Source/core/html/HTMLFontElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFieldSetElement.h
diff --git a/Source/core/html/HTMLFieldSetElement.h b/Source/core/html/HTMLFieldSetElement.h
index 1dcafb95157d5d0565b7df39693e73c77498e53d..8dce944eb95c856c8def6fc01bb0edc030df917f 100644
--- a/Source/core/html/HTMLFieldSetElement.h
+++ b/Source/core/html/HTMLFieldSetElement.h
@@ -43,22 +43,22 @@ public:
const FormAssociatedElement::List& associatedElements() const;
protected:
- virtual void disabledAttributeChanged() override;
+ void disabledAttributeChanged() override;
private:
HTMLFieldSetElement(Document&, HTMLFormElement*);
- virtual bool isEnumeratable() const override { return true; }
- virtual bool supportsFocus() const override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual const AtomicString& formControlType() const override;
- virtual bool recalcWillValidate() const override { return false; }
- virtual bool matchesValidityPseudoClasses() const override final;
- virtual bool isValidElement() override final;
- virtual void childrenChanged(const ChildrenChange&) override;
- virtual bool areAuthorShadowsAllowed() const override { return false; }
- virtual bool isSubmittableElement() override;
- virtual bool alwaysCreateUserAgentShadowRoot() const override { return false; }
+ bool isEnumeratable() const override { return true; }
+ bool supportsFocus() const override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ const AtomicString& formControlType() const override;
+ bool recalcWillValidate() const override { return false; }
+ bool matchesValidityPseudoClasses() const final;
+ bool isValidElement() final;
+ void childrenChanged(const ChildrenChange&) override;
+ bool areAuthorShadowsAllowed() const override { return false; }
+ bool isSubmittableElement() override;
+ bool alwaysCreateUserAgentShadowRoot() const override { return false; }
static void invalidateDisabledStateUnder(Element&);
void refreshElementsIfNeeded() const;
« no previous file with comments | « Source/core/html/HTMLEmbedElement.h ('k') | Source/core/html/HTMLFontElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698