| Index: Source/core/rendering/svg/RenderSVGTransformableContainer.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGTransformableContainer.h b/Source/core/rendering/svg/RenderSVGTransformableContainer.h
|
| index 6aa752aa95daa3bc727956940b7d92b59f81944d..ccec4fd7befae4e3d425c21f423267ac28de9d93 100644
|
| --- a/Source/core/rendering/svg/RenderSVGTransformableContainer.h
|
| +++ b/Source/core/rendering/svg/RenderSVGTransformableContainer.h
|
| @@ -30,14 +30,14 @@ class RenderSVGTransformableContainer FINAL : public RenderSVGContainer {
|
| public:
|
| explicit RenderSVGTransformableContainer(SVGGraphicsElement*);
|
|
|
| - virtual bool isSVGTransformableContainer() const { return true; }
|
| - virtual const AffineTransform& localToParentTransform() const { return m_localTransform; }
|
| - virtual void setNeedsTransformUpdate() { m_needsTransformUpdate = true; }
|
| - virtual bool didTransformToRootUpdate() { return m_didTransformToRootUpdate; }
|
| + virtual bool isSVGTransformableContainer() const OVERRIDE { return true; }
|
| + virtual const AffineTransform& localToParentTransform() const OVERRIDE { return m_localTransform; }
|
| + virtual void setNeedsTransformUpdate() OVERRIDE { m_needsTransformUpdate = true; }
|
| + virtual bool didTransformToRootUpdate() OVERRIDE { return m_didTransformToRootUpdate; }
|
|
|
| private:
|
| - virtual bool calculateLocalTransform();
|
| - virtual AffineTransform localTransform() const { return m_localTransform; }
|
| + virtual bool calculateLocalTransform() OVERRIDE;
|
| + virtual AffineTransform localTransform() const OVERRIDE { return m_localTransform; }
|
|
|
| bool m_needsTransformUpdate : 1;
|
| bool m_didTransformToRootUpdate : 1;
|
|
|