| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.h
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.h
|
| index bbc5e9ed13adb9450ea3bf008a30116115415f6a..3229bf66a129550a668ecdc1e0f8164bac598e6c 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.h
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.h
|
| @@ -24,6 +24,7 @@
|
| #include "core/svg/SVGMaskElement.h"
|
| #include "core/svg/SVGUnitTypes.h"
|
| #include "platform/geometry/FloatRect.h"
|
| +#include "third_party/skia/include/core/SkRefCnt.h"
|
|
|
| class SkPicture;
|
|
|
| @@ -50,12 +51,12 @@ public:
|
| static const LayoutSVGResourceType s_resourceType = MaskerResourceType;
|
| LayoutSVGResourceType resourceType() const override { return s_resourceType; }
|
|
|
| - PassRefPtr<const SkPicture> createContentPicture(AffineTransform&, const FloatRect&, GraphicsContext&);
|
| + sk_sp<const SkPicture> createContentPicture(AffineTransform&, const FloatRect&, GraphicsContext&);
|
|
|
| private:
|
| void calculateMaskContentPaintInvalidationRect();
|
|
|
| - RefPtr<const SkPicture> m_maskContentPicture;
|
| + sk_sp<const SkPicture> m_maskContentPicture;
|
| FloatRect m_maskContentBoundaries;
|
| };
|
|
|
|
|