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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 0bd64d8dbf82554e93e512966962956993ef28f2..dd2bceb119628de4b4123cf1d329543c84c479a4 100644
--- a/Source/core/html/HTMLFieldSetElement.h
+++ b/Source/core/html/HTMLFieldSetElement.h
@@ -31,11 +31,11 @@ namespace blink {
class FormAssociatedElement;
class HTMLFormControlsCollection;
-class HTMLFieldSetElement FINAL : public HTMLFormControlElement {
+class HTMLFieldSetElement final : public HTMLFormControlElement {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLFieldSetElement> create(Document&, HTMLFormElement*);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
HTMLLegendElement* legend() const;
PassRefPtrWillBeRawPtr<HTMLFormControlsCollection> elements();
@@ -43,18 +43,18 @@ public:
const FormAssociatedElement::List& associatedElements() const;
protected:
- virtual void disabledAttributeChanged() OVERRIDE;
+ virtual void disabledAttributeChanged() override;
private:
HTMLFieldSetElement(Document&, HTMLFormElement*);
- virtual bool isEnumeratable() const OVERRIDE { return true; }
- virtual bool supportsFocus() const OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual bool recalcWillValidate() const OVERRIDE { return false; }
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
- virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
+ virtual bool isEnumeratable() const override { return true; }
+ virtual bool supportsFocus() const override;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
+ virtual const AtomicString& formControlType() const override;
+ virtual bool recalcWillValidate() const override { return false; }
+ virtual void childrenChanged(const ChildrenChange&) override;
+ virtual bool areAuthorShadowsAllowed() 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