| Index: third_party/WebKit/Source/platform/graphics/PicturePattern.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/PicturePattern.h b/third_party/WebKit/Source/platform/graphics/PicturePattern.h
|
| index 8b7b03a2b1cf12a872a193e861f54aafd0c400b0..93033772fa98addb3febd24344e46e32aa8f8179 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/PicturePattern.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/PicturePattern.h
|
| @@ -12,17 +12,17 @@ namespace blink {
|
|
|
| class PLATFORM_EXPORT PicturePattern final : public Pattern {
|
| public:
|
| - static PassRefPtr<PicturePattern> create(sk_sp<SkPicture>, RepeatMode);
|
| + static PassRefPtr<PicturePattern> create(sk_sp<PaintRecord>, RepeatMode);
|
|
|
| ~PicturePattern() override;
|
|
|
| protected:
|
| - sk_sp<SkShader> createShader(const SkMatrix&) override;
|
| + sk_sp<PaintShader> createShader(const SkMatrix&) override;
|
|
|
| private:
|
| - PicturePattern(sk_sp<SkPicture>, RepeatMode);
|
| + PicturePattern(sk_sp<PaintRecord>, RepeatMode);
|
|
|
| - sk_sp<SkPicture> m_tilePicture;
|
| + sk_sp<PaintRecord> m_tilePicture;
|
| };
|
|
|
| } // namespace blink
|
|
|