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

Unified Diff: Source/core/html/HTMLOutputElement.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/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 9926d847d29291e1b55ca7500b4960f197e702d0..5a811b8950b23723e7b99939ff28b1c63b0b9168 100644
--- a/Source/core/html/HTMLOutputElement.h
+++ b/Source/core/html/HTMLOutputElement.h
@@ -41,7 +41,7 @@ class HTMLOutputElement final : public HTMLFormControlElement {
public:
static PassRefPtrWillBeRawPtr<HTMLOutputElement> create(Document&, HTMLFormElement*);
- virtual bool willValidate() const override { return false; }
+ 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; }
+ bool canContainRangeEndPoint() const override { return false; }
DECLARE_VIRTUAL_TRACE();
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;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ const AtomicString& formControlType() const override;
+ bool isEnumeratable() const override { return true; }
+ bool supportLabels() const override { return true; }
+ bool supportsFocus() const override;
+ void childrenChanged(const ChildrenChange&) override;
+ 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