Index: third_party/WebKit/Source/core/paint/SVGMaskPainter.h |
diff --git a/third_party/WebKit/Source/core/paint/SVGMaskPainter.h b/third_party/WebKit/Source/core/paint/SVGMaskPainter.h |
index f0c386d6a5234431b0055042395405f1eae44013..e938534c82701e16f80b0c5403181f1a8c2d744f 100644 |
--- a/third_party/WebKit/Source/core/paint/SVGMaskPainter.h |
+++ b/third_party/WebKit/Source/core/paint/SVGMaskPainter.h |
@@ -19,11 +19,11 @@ class SVGMaskPainter { |
public: |
SVGMaskPainter(LayoutSVGResourceMasker& mask) : m_mask(mask) { } |
- bool prepareEffect(const LayoutObject&, GraphicsContext*); |
- void finishEffect(const LayoutObject&, GraphicsContext*); |
+ bool prepareEffect(const LayoutObject&, GraphicsContext&); |
+ void finishEffect(const LayoutObject&, GraphicsContext&); |
private: |
- void drawMaskForLayoutObject(GraphicsContext*, const LayoutObject&, const FloatRect& targetBoundingBox, const FloatRect& targetPaintInvalidationRect); |
+ void drawMaskForLayoutObject(GraphicsContext&, const LayoutObject&, const FloatRect& targetBoundingBox, const FloatRect& targetPaintInvalidationRect); |
LayoutSVGResourceMasker& m_mask; |
}; |