| 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
|
|
|