Index: Source/core/html/LabelableElement.h |
diff --git a/Source/core/html/LabelableElement.h b/Source/core/html/LabelableElement.h |
index 2819a31dcde60991c2a75f57af22d210babee97c..03cf6a0758bc0a7df6a076003a432a5388c9c2f9 100644 |
--- a/Source/core/html/LabelableElement.h |
+++ b/Source/core/html/LabelableElement.h |
@@ -45,13 +45,13 @@ public: |
PassRefPtrWillBeRawPtr<LabelsNodeList> labels(); |
virtual bool supportLabels() const { return false; } |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
protected: |
LabelableElement(const QualifiedName& tagName, Document&); |
private: |
- virtual bool isLabelable() const OVERRIDE FINAL { return true; } |
+ virtual bool isLabelable() const override final { return true; } |
}; |
inline bool isLabelableElement(const HTMLElement& element) |