| Index: Source/core/layout/svg/LayoutSVGResourceMarker.h
|
| diff --git a/Source/core/layout/svg/LayoutSVGResourceMarker.h b/Source/core/layout/svg/LayoutSVGResourceMarker.h
|
| index 5aad568c4785da1d7ee2fada82ee8ad2224cd0ac..5bb55d59f6874f83847b947392c9f8fe26256357 100644
|
| --- a/Source/core/layout/svg/LayoutSVGResourceMarker.h
|
| +++ b/Source/core/layout/svg/LayoutSVGResourceMarker.h
|
| @@ -33,20 +33,20 @@ class LayoutObject;
|
| class LayoutSVGResourceMarker final : public LayoutSVGResourceContainer {
|
| public:
|
| explicit LayoutSVGResourceMarker(SVGMarkerElement*);
|
| - virtual ~LayoutSVGResourceMarker();
|
| + ~LayoutSVGResourceMarker() override;
|
|
|
| - virtual const char* name() const override { return "LayoutSVGResourceMarker"; }
|
| + const char* name() const override { return "LayoutSVGResourceMarker"; }
|
|
|
| - virtual void removeAllClientsFromCache(bool markForInvalidation = true) override;
|
| - virtual void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override;
|
| + void removeAllClientsFromCache(bool markForInvalidation = true) override;
|
| + void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override;
|
|
|
| // Calculates marker boundaries, mapped to the target element's coordinate space
|
| FloatRect markerBoundaries(const AffineTransform& markerTransformation) const;
|
|
|
| - virtual void layout() override;
|
| - virtual void calcViewport() override;
|
| + void layout() override;
|
| + void calcViewport() override;
|
|
|
| - virtual const AffineTransform& localToParentTransform() const override;
|
| + const AffineTransform& localToParentTransform() const override;
|
| AffineTransform markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const;
|
|
|
| FloatPoint referencePoint() const;
|
| @@ -57,7 +57,7 @@ public:
|
| const FloatRect& viewport() const { return m_viewport; }
|
|
|
| static const LayoutSVGResourceType s_resourceType = MarkerResourceType;
|
| - virtual LayoutSVGResourceType resourceType() const override { return s_resourceType; }
|
| + LayoutSVGResourceType resourceType() const override { return s_resourceType; }
|
|
|
| private:
|
| // Generates a transformation matrix usable to layout marker content. Handles scaling the marker content
|
|
|