| Index: third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
|
| index ca5b03852ba1d1e35c5e1def6e32105b15f3decb..9e89281fd1b1b82e18febd22e711d9d3002fe908 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
|
| @@ -12,7 +12,7 @@
|
|
|
| namespace blink {
|
|
|
| -void BeginClipPathDisplayItem::replay(GraphicsContext& context)
|
| +void BeginClipPathDisplayItem::replay(GraphicsContext& context) const
|
| {
|
| context.save();
|
| context.clipPath(m_clipPath, AntiAliased);
|
| @@ -23,7 +23,7 @@ void BeginClipPathDisplayItem::appendToWebDisplayItemList(WebDisplayItemList* li
|
| list->appendClipPathItem(m_clipPath, SkRegion::kIntersect_Op, true);
|
| }
|
|
|
| -void EndClipPathDisplayItem::replay(GraphicsContext& context)
|
| +void EndClipPathDisplayItem::replay(GraphicsContext& context) const
|
| {
|
| context.restore();
|
| }
|
|
|