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

Unified Diff: Source/core/html/HTMLProgressElement.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/HTMLPreElement.h ('k') | Source/core/html/HTMLQuoteElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLProgressElement.h
diff --git a/Source/core/html/HTMLProgressElement.h b/Source/core/html/HTMLProgressElement.h
index 63e64e64af01c00fb53008688c16b3a5172eb8d7..69e827773bdc136b791bf5c5ebc1816b9904ebc9 100644
--- a/Source/core/html/HTMLProgressElement.h
+++ b/Source/core/html/HTMLProgressElement.h
@@ -28,7 +28,7 @@ namespace blink {
class ProgressValueElement;
class RenderProgress;
-class HTMLProgressElement FINAL : public LabelableElement {
+class HTMLProgressElement final : public LabelableElement {
DEFINE_WRAPPERTYPEINFO();
public:
static const double IndeterminatePosition;
@@ -44,27 +44,27 @@ public:
double position() 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 HTMLProgressElement(Document&);
virtual ~HTMLProgressElement();
- virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
- virtual bool shouldAppearIndeterminate() const OVERRIDE;
- virtual bool supportLabels() const OVERRIDE { return true; }
+ virtual bool areAuthorShadowsAllowed() const override { return false; }
+ virtual bool shouldAppearIndeterminate() const override;
+ virtual bool supportLabels() const override { return true; }
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
RenderProgress* renderProgress() const;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
+ virtual void attach(const AttachContext& = AttachContext()) override;
void didElementStateChange();
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
+ virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
bool isDeterminate() const;
RawPtrWillBeMember<ProgressValueElement> m_value;
« no previous file with comments | « Source/core/html/HTMLPreElement.h ('k') | Source/core/html/HTMLQuoteElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698