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

Unified Diff: Source/core/html/HTMLMeterElement.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/HTMLMetaElement.h ('k') | Source/core/html/HTMLModElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMeterElement.h
diff --git a/Source/core/html/HTMLMeterElement.h b/Source/core/html/HTMLMeterElement.h
index 5b1eb941ca258ab211490ca22216d31af827e389..7e61feeae1f63879681474544fa1755f26752681 100644
--- a/Source/core/html/HTMLMeterElement.h
+++ b/Source/core/html/HTMLMeterElement.h
@@ -28,7 +28,7 @@ namespace blink {
class MeterValueElement;
class RenderMeter;
-class HTMLMeterElement FINAL : public LabelableElement {
+class HTMLMeterElement final : public LabelableElement {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLMeterElement> create(Document&);
@@ -60,24 +60,24 @@ public:
double valueRatio() const;
GaugeRegion gaugeRegion() 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:
explicit HTMLMeterElement(Document&);
virtual ~HTMLMeterElement();
- virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
+ virtual bool areAuthorShadowsAllowed() const override { return false; }
RenderMeter* renderMeter() const;
- virtual bool supportLabels() const OVERRIDE { return true; }
+ virtual bool supportLabels() const override { return true; }
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
void didElementStateChange();
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
+ virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
RefPtrWillBeMember<MeterValueElement> m_value;
};
« no previous file with comments | « Source/core/html/HTMLMetaElement.h ('k') | Source/core/html/HTMLModElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698