| Index: third_party/WebKit/Source/core/paint/FilterEffectBuilder.h
|
| diff --git a/third_party/WebKit/Source/core/paint/FilterEffectBuilder.h b/third_party/WebKit/Source/core/paint/FilterEffectBuilder.h
|
| index 9032c61161a6c4349e33b068ebbde45f359fa8a9..cad404b3ec8c7f79c738496b944f9468e996e518 100644
|
| --- a/third_party/WebKit/Source/core/paint/FilterEffectBuilder.h
|
| +++ b/third_party/WebKit/Source/core/paint/FilterEffectBuilder.h
|
| @@ -50,13 +50,13 @@ class CORE_EXPORT FilterEffectBuilder final {
|
| public:
|
| FilterEffectBuilder(const FloatRect& zoomedReferenceBox,
|
| float zoom,
|
| - const SkPaint* fillPaint = nullptr,
|
| - const SkPaint* strokePaint = nullptr);
|
| + const PaintFlags* fillFlags = nullptr,
|
| + const PaintFlags* strokeFlags = nullptr);
|
| FilterEffectBuilder(Node*,
|
| const FloatRect& zoomedReferenceBox,
|
| float zoom,
|
| - const PaintFlags* fillPaint = nullptr,
|
| - const PaintFlags* strokePaint = nullptr);
|
| + const PaintFlags* fillFlags = nullptr,
|
| + const PaintFlags* strokeFlags = nullptr);
|
|
|
| Filter* buildReferenceFilter(SVGFilterElement&,
|
| FilterEffect* previousEffect,
|
| @@ -73,8 +73,8 @@ class CORE_EXPORT FilterEffectBuilder final {
|
| Member<Node> m_targetContext;
|
| FloatRect m_referenceBox;
|
| float m_zoom;
|
| - const PaintFlags* m_fillPaint;
|
| - const PaintFlags* m_strokePaint;
|
| + const PaintFlags* m_fillFlags;
|
| + const PaintFlags* m_strokeFlags;
|
| };
|
|
|
| } // namespace blink
|
|
|