Index: third_party/WebKit/Source/core/paint/SVGClipPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp b/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp |
index 52d1bd919f581b3d5f40982135011441098d3936..244719831325e44ef7ce14476052c622c4b38446 100644 |
--- a/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/SVGClipPainter.cpp |
@@ -56,7 +56,7 @@ bool SVGClipPainter::prepareEffect(const LayoutObject& target, const FloatRect& |
Path clipPath; |
if (m_clip.asPath(animatedLocalTransform, targetBoundingBox, clipPath)) { |
clipperState = ClipperAppliedPath; |
- context.paintController().createAndAppend<BeginClipPathDisplayItem>(target, clipPath); |
+ context.getPaintController().createAndAppend<BeginClipPathDisplayItem>(target, clipPath); |
return true; |
} |
@@ -95,7 +95,7 @@ void SVGClipPainter::finishEffect(const LayoutObject& target, GraphicsContext& c |
switch (clipperState) { |
case ClipperAppliedPath: |
// Path-only clipping, no layers to restore but we need to emit an end to the clip path display item. |
- context.paintController().endItem<EndClipPathDisplayItem>(target); |
+ context.getPaintController().endItem<EndClipPathDisplayItem>(target); |
break; |
case ClipperAppliedMask: |
// Transfer content -> clip mask (SrcIn) |