summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h b/chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h
index b1cb992c5eb..1e2b636acdc 100644
--- a/chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h
+++ b/chromium/third_party/WebKit/Source/core/rendering/RenderRubyText.h
@@ -40,19 +40,17 @@ 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(unsigned expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const OVERRIDE;
};
} // namespace WebCore