| Index: third_party/WebKit/Source/core/paint/SVGClipPainter.h
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGClipPainter.h b/third_party/WebKit/Source/core/paint/SVGClipPainter.h
|
| index ce901646010d5cfd46918706775f665b23863f8d..e1da3baf850603740e1b9ff62d3c29170dd5b73c 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGClipPainter.h
|
| +++ b/third_party/WebKit/Source/core/paint/SVGClipPainter.h
|
| @@ -30,12 +30,13 @@ public:
|
| // FIXME: Filters are also stateful resources that could benefit from having their state managed
|
| // on the caller stack instead of the current hashmap. We should look at refactoring these
|
| // into a general interface that can be shared.
|
| - bool prepareEffect(const LayoutObject&, const FloatRect&, const FloatRect&, GraphicsContext&, ClipperState&);
|
| + bool prepareEffect(const LayoutObject&, const FloatRect&, const FloatRect&, const FloatPoint&, GraphicsContext&, ClipperState&);
|
| void finishEffect(const LayoutObject&, GraphicsContext&, ClipperState&);
|
|
|
| private:
|
| // Return false if there is a problem drawing the mask.
|
| - bool drawClipAsMask(GraphicsContext&, const LayoutObject&, const FloatRect& targetBoundingBox, const FloatRect& targetPaintInvalidationRect, const AffineTransform&);
|
| + bool drawClipAsMask(GraphicsContext&, const LayoutObject&, const FloatRect& targetBoundingBox,
|
| + const FloatRect& targetPaintInvalidationRect, const AffineTransform&, const FloatPoint&);
|
|
|
| LayoutSVGResourceClipper& m_clip;
|
| };
|
|
|