Index: third_party/WebKit/Source/core/paint/LayerClipRecorder.cpp |
diff --git a/third_party/WebKit/Source/core/paint/LayerClipRecorder.cpp b/third_party/WebKit/Source/core/paint/LayerClipRecorder.cpp |
index 5bd6b53b33640f320b8e3be8d0b27d18d35fcf28..44470cca68a5ce631f99b1453e85e930080470b5 100644 |
--- a/third_party/WebKit/Source/core/paint/LayerClipRecorder.cpp |
+++ b/third_party/WebKit/Source/core/paint/LayerClipRecorder.cpp |
@@ -27,7 +27,7 @@ LayerClipRecorder::LayerClipRecorder(GraphicsContext& graphicsContext, const Lay |
collectRoundedRectClips(*layoutObject.layer(), *localPaintingInfo, graphicsContext, fragmentOffset, paintFlags, rule, roundedRects); |
} |
- m_graphicsContext.paintController().createAndAppend<ClipDisplayItem>(layoutObject, m_clipType, snappedClipRect, roundedRects); |
+ m_graphicsContext.getPaintController().createAndAppend<ClipDisplayItem>(layoutObject, m_clipType, snappedClipRect, roundedRects); |
} |
static bool inContainingBlockChain(PaintLayer* startLayer, PaintLayer* endLayer) |
@@ -75,7 +75,7 @@ void LayerClipRecorder::collectRoundedRectClips(PaintLayer& paintLayer, const Pa |
LayerClipRecorder::~LayerClipRecorder() |
{ |
- m_graphicsContext.paintController().endItem<EndClipDisplayItem>(m_layoutObject, DisplayItem::clipTypeToEndClipType(m_clipType)); |
+ m_graphicsContext.getPaintController().endItem<EndClipDisplayItem>(m_layoutObject, DisplayItem::clipTypeToEndClipType(m_clipType)); |
} |
} // namespace blink |