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

Unified Diff: Source/core/html/HTMLKeygenElement.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/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 0d5559bad596e5e19d43dbee6e7cf25088b0009a..95b392ac68476363688b7001d7d5fac6563a0cda 100644
--- a/Source/core/html/HTMLKeygenElement.h
+++ b/Source/core/html/HTMLKeygenElement.h
@@ -30,35 +30,35 @@ namespace blink {
class HTMLSelectElement;
-class HTMLKeygenElement FINAL : public HTMLFormControlElementWithState {
+class HTMLKeygenElement final : public HTMLFormControlElementWithState {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLKeygenElement> create(Document&, HTMLFormElement*);
- virtual bool willValidate() const OVERRIDE { return false; }
+ virtual bool willValidate() const override { return false; }
private:
HTMLKeygenElement(Document&, HTMLFormElement*);
- virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
+ virtual bool areAuthorShadowsAllowed() const override { return false; }
- virtual bool canStartSelection() const OVERRIDE { return false; }
+ virtual bool canStartSelection() const override { return false; }
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
+ virtual 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; }
+ virtual bool appendFormData(FormDataList&, bool) override;
+ virtual const AtomicString& formControlType() const override;
+ virtual 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; }
+ virtual bool isEnumeratable() const override { return true; }
+ virtual bool isInteractiveContent() const override;
+ virtual bool supportsAutofocus() const override;
+ virtual bool supportLabels() const override { return true; }
- virtual void resetImpl() OVERRIDE;
- virtual bool shouldSaveAndRestoreFormControlState() const OVERRIDE { return false; }
+ virtual void resetImpl() override;
+ virtual bool shouldSaveAndRestoreFormControlState() const override { return false; }
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
+ virtual 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