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

Unified Diff: Source/core/html/HTMLOutputElement.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/HTMLOptionsCollection.h ('k') | Source/core/html/HTMLParagraphElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOutputElement.h
diff --git a/Source/core/html/HTMLOutputElement.h b/Source/core/html/HTMLOutputElement.h
index 7f33fcfa813254def28102de4c107512fdbc8b51..a7c59d823e5a599b87c17287cce23da935aa9aba 100644
--- a/Source/core/html/HTMLOutputElement.h
+++ b/Source/core/html/HTMLOutputElement.h
@@ -36,12 +36,12 @@
namespace blink {
-class HTMLOutputElement FINAL : public HTMLFormControlElement {
+class HTMLOutputElement final : public HTMLFormControlElement {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLOutputElement> create(Document&, HTMLFormElement*);
- virtual bool willValidate() const OVERRIDE { return false; }
+ virtual bool willValidate() const override { return false; }
String value() const;
void setValue(const String&);
@@ -50,20 +50,20 @@ public:
void setFor(const AtomicString&);
DOMSettableTokenList* htmlFor() const;
- virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
+ virtual bool canContainRangeEndPoint() const override { return false; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
HTMLOutputElement(Document&, HTMLFormElement*);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual bool isEnumeratable() const OVERRIDE { return true; }
- virtual bool supportLabels() const OVERRIDE { return true; }
- virtual bool supportsFocus() const OVERRIDE;
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
- virtual void resetImpl() OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual const AtomicString& formControlType() const override;
+ virtual bool isEnumeratable() const override { return true; }
+ virtual bool supportLabels() const override { return true; }
+ virtual bool supportsFocus() const override;
+ virtual void childrenChanged(const ChildrenChange&) override;
+ virtual void resetImpl() override;
bool m_isDefaultValueMode;
String m_defaultValue;
« no previous file with comments | « Source/core/html/HTMLOptionsCollection.h ('k') | Source/core/html/HTMLParagraphElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698