| Index: Source/core/rendering/RenderRubyText.h
|
| diff --git a/Source/core/rendering/RenderRubyText.h b/Source/core/rendering/RenderRubyText.h
|
| index b1cb992c5eb7e2157179db6a9115d3ea3d6a71cf..0f35383e6d4f38784de45e41a61fd9d3c483a1aa 100644
|
| --- a/Source/core/rendering/RenderRubyText.h
|
| +++ b/Source/core/rendering/RenderRubyText.h
|
| @@ -40,19 +40,19 @@ public:
|
| RenderRubyText(Element*);
|
| virtual ~RenderRubyText();
|
|
|
| - virtual const char* renderName() const { return "RenderRubyText"; }
|
| + virtual const char* renderName() const OVERRIDE { return "RenderRubyText"; }
|
|
|
| - virtual bool isRubyText() const { return true; }
|
| + virtual bool isRubyText() const OVERRIDE { return true; }
|
|
|
| - virtual bool isChildAllowed(RenderObject*, RenderStyle*) const;
|
| + virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
|
|
|
| private:
|
| - virtual bool avoidsFloats() const;
|
| + virtual bool avoidsFloats() const OVERRIDE;
|
|
|
| virtual bool supportsPartialLayout() const OVERRIDE { return false; }
|
|
|
| - virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
|
| - virtual void adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const;
|
| + virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const OVERRIDE;
|
| + virtual void adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const OVERRIDE;
|
| };
|
|
|
| } // namespace WebCore
|
|
|