| 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 2cbbff153e96b6bb765e8263883f944d4de007d6..7aa2b368c083cd921f012d470f55ebc7dff4e335 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
|
| @@ -20,7 +20,7 @@ void BeginClipPathDisplayItem::replay(GraphicsContext& context) const
|
|
|
| void BeginClipPathDisplayItem::appendToWebDisplayItemList(const IntRect& visualRect, WebDisplayItemList* list) const
|
| {
|
| - list->appendClipPathItem(visualRect, m_clipPath, SkRegion::kIntersect_Op, true);
|
| + list->appendClipPathItem(m_clipPath, SkRegion::kIntersect_Op, true);
|
| }
|
|
|
| void BeginClipPathDisplayItem::analyzeForGpuRasterization(SkPictureGpuAnalyzer& analyzer) const
|
| @@ -36,7 +36,7 @@ void EndClipPathDisplayItem::replay(GraphicsContext& context) const
|
|
|
| void EndClipPathDisplayItem::appendToWebDisplayItemList(const IntRect& visualRect, WebDisplayItemList* list) const
|
| {
|
| - list->appendEndClipPathItem(visualRect);
|
| + list->appendEndClipPathItem();
|
| }
|
|
|
| #ifndef NDEBUG
|
|
|