| Index: third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.h b/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.h
|
| index 3280cb59774e9f95e2133fabcda55dcbb971a7c5..766189865b092c990953abdbe5b98057bb3c443a 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/PaintFilterEffect.h
|
| @@ -6,13 +6,13 @@
|
| #define PaintFilterEffect_h
|
|
|
| #include "platform/graphics/filters/FilterEffect.h"
|
| -#include "third_party/skia/include/core/SkPaint.h"
|
| +#include "platform/graphics/paint/PaintFlags.h"
|
|
|
| namespace blink {
|
|
|
| class PLATFORM_EXPORT PaintFilterEffect : public FilterEffect {
|
| public:
|
| - static PaintFilterEffect* create(Filter*, const SkPaint&);
|
| + static PaintFilterEffect* create(Filter*, const PaintFlags&);
|
| ~PaintFilterEffect() override;
|
|
|
| FilterEffectType getFilterEffectType() const override {
|
| @@ -23,9 +23,9 @@ class PLATFORM_EXPORT PaintFilterEffect : public FilterEffect {
|
| sk_sp<SkImageFilter> createImageFilter() override;
|
|
|
| private:
|
| - PaintFilterEffect(Filter*, const SkPaint&);
|
| + PaintFilterEffect(Filter*, const PaintFlags&);
|
|
|
| - SkPaint m_paint;
|
| + PaintFlags m_paint;
|
| };
|
|
|
| } // namespace blink
|
|
|