| Index: Source/core/layout/svg/LayoutSVGResourcePattern.h
|
| diff --git a/Source/core/layout/svg/LayoutSVGResourcePattern.h b/Source/core/layout/svg/LayoutSVGResourcePattern.h
|
| index 87baeb80d01f2dcc013cc6f857d5e4929ea4ae69..d3b3d9959520300f7332d36ef85dd3315e444084 100644
|
| --- a/Source/core/layout/svg/LayoutSVGResourcePattern.h
|
| +++ b/Source/core/layout/svg/LayoutSVGResourcePattern.h
|
| @@ -42,15 +42,15 @@ class LayoutSVGResourcePattern final : public LayoutSVGResourcePaintServer {
|
| public:
|
| explicit LayoutSVGResourcePattern(SVGPatternElement*);
|
|
|
| - virtual const char* name() const override { return "LayoutSVGResourcePattern"; }
|
| + const char* name() const override { return "LayoutSVGResourcePattern"; }
|
|
|
| - 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;
|
|
|
| - virtual SVGPaintServer preparePaintServer(const LayoutObject&) override;
|
| + SVGPaintServer preparePaintServer(const LayoutObject&) override;
|
|
|
| static const LayoutSVGResourceType s_resourceType = PatternResourceType;
|
| - virtual LayoutSVGResourceType resourceType() const override { return s_resourceType; }
|
| + LayoutSVGResourceType resourceType() const override { return s_resourceType; }
|
|
|
| private:
|
| PassOwnPtr<PatternData> buildPatternData(const LayoutObject&);
|
|
|