| Index: Source/core/rendering/svg/RenderSVGRect.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGRect.h b/Source/core/rendering/svg/RenderSVGRect.h
|
| index 8675f11c0305d21c75c9447e20e2cbde99d05ed3..58006076633dc6b2431ab8d56e05a6fe0fee6ed7 100644
|
| --- a/Source/core/rendering/svg/RenderSVGRect.h
|
| +++ b/Source/core/rendering/svg/RenderSVGRect.h
|
| @@ -33,20 +33,20 @@
|
|
|
| namespace blink {
|
|
|
| -class RenderSVGRect FINAL : public RenderSVGShape {
|
| +class RenderSVGRect final : public RenderSVGShape {
|
| public:
|
| explicit RenderSVGRect(SVGRectElement*);
|
| virtual ~RenderSVGRect();
|
|
|
| private:
|
| - virtual const char* renderName() const OVERRIDE { return "RenderSVGRect"; }
|
| -
|
| - virtual void updateShapeFromElement() OVERRIDE;
|
| - virtual bool isShapeEmpty() const OVERRIDE { return m_usePathFallback ? RenderSVGShape::isShapeEmpty() : m_fillBoundingBox.isEmpty(); }
|
| - virtual void fillShape(GraphicsContext*) const OVERRIDE;
|
| - virtual void strokeShape(GraphicsContext*) const OVERRIDE;
|
| - virtual bool shapeDependentStrokeContains(const FloatPoint&) OVERRIDE;
|
| - virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const OVERRIDE;
|
| + virtual const char* renderName() const override { return "RenderSVGRect"; }
|
| +
|
| + virtual void updateShapeFromElement() override;
|
| + virtual bool isShapeEmpty() const override { return m_usePathFallback ? RenderSVGShape::isShapeEmpty() : m_fillBoundingBox.isEmpty(); }
|
| + virtual void fillShape(GraphicsContext*) const override;
|
| + virtual void strokeShape(GraphicsContext*) const override;
|
| + virtual bool shapeDependentStrokeContains(const FloatPoint&) override;
|
| + virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const override;
|
|
|
| private:
|
| FloatRect m_innerStrokeRect;
|
|
|