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

Unified Diff: Source/core/html/HTMLKeygenElement.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/HTMLInputElement.cpp ('k') | Source/core/html/HTMLLIElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLKeygenElement.h
diff --git a/Source/core/html/HTMLKeygenElement.h b/Source/core/html/HTMLKeygenElement.h
index 3721d1886ca1e3bd8f477a0fa97f7a25842443c0..e2643de1519da90a5e031949129a871a133b7f2d 100644
--- a/Source/core/html/HTMLKeygenElement.h
+++ b/Source/core/html/HTMLKeygenElement.h
@@ -35,32 +35,32 @@ class HTMLKeygenElement final : public HTMLFormControlElementWithState {
public:
static PassRefPtrWillBeRawPtr<HTMLKeygenElement> create(Document&, HTMLFormElement*);
- virtual bool willValidate() const override { return false; }
+ bool willValidate() const override { return false; }
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
private:
HTMLKeygenElement(Document&, HTMLFormElement*);
- virtual bool areAuthorShadowsAllowed() const override { return false; }
+ bool areAuthorShadowsAllowed() const override { return false; }
- virtual bool canStartSelection() const override { return false; }
+ bool canStartSelection() const override { return false; }
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual bool appendFormData(FormDataList&, bool) override;
- virtual const AtomicString& formControlType() const override;
- virtual bool isOptionalFormControl() const override { return false; }
+ bool appendFormData(FormDataList&, bool) override;
+ const AtomicString& formControlType() const override;
+ bool isOptionalFormControl() const override { return false; }
- virtual bool isEnumeratable() const override { return true; }
- virtual bool isInteractiveContent() const override;
- virtual bool supportsAutofocus() const override;
- virtual bool supportLabels() const override { return true; }
+ bool isEnumeratable() const override { return true; }
+ bool isInteractiveContent() const override;
+ bool supportsAutofocus() const override;
+ bool supportLabels() const override { return true; }
- virtual void resetImpl() override;
- virtual bool shouldSaveAndRestoreFormControlState() const override { return false; }
+ void resetImpl() override;
+ bool shouldSaveAndRestoreFormControlState() const override { return false; }
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
+ void didAddUserAgentShadowRoot(ShadowRoot&) override;
HTMLSelectElement* shadowSelect() const;
};
« no previous file with comments | « Source/core/html/HTMLInputElement.cpp ('k') | Source/core/html/HTMLLIElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698