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

Unified Diff: Source/core/rendering/RenderRubyText.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/rendering/RenderRubyRun.h ('k') | Source/core/rendering/RenderScrollbar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderRubyText.h
diff --git a/Source/core/rendering/RenderRubyText.h b/Source/core/rendering/RenderRubyText.h
index a44835986c442c406b3d30ebc2110026d48659c6..62fc359bf268d3fe72eec82fccce6dacb7c9d9e4 100644
--- a/Source/core/rendering/RenderRubyText.h
+++ b/Source/core/rendering/RenderRubyText.h
@@ -35,22 +35,22 @@
namespace blink {
-class RenderRubyText FINAL : public RenderBlockFlow {
+class RenderRubyText final : public RenderBlockFlow {
public:
RenderRubyText(Element*);
virtual ~RenderRubyText();
- virtual const char* renderName() const OVERRIDE { return "RenderRubyText"; }
+ virtual const char* renderName() const override { return "RenderRubyText"; }
- virtual bool isRubyText() const OVERRIDE { return true; }
+ virtual bool isRubyText() const override { return true; }
- virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
+ virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override;
private:
- virtual bool avoidsFloats() const OVERRIDE;
+ virtual bool avoidsFloats() const override;
- virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const OVERRIDE;
- virtual void adjustInlineDirectionLineBounds(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const OVERRIDE;
+ virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const override;
+ virtual void adjustInlineDirectionLineBounds(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const override;
};
} // namespace blink
« no previous file with comments | « Source/core/rendering/RenderRubyRun.h ('k') | Source/core/rendering/RenderScrollbar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698