Index: third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp |
index 0f5d1532af93e748fc810906228cec59ec1d03c7..7a2d3eb76faea1c836cf23e4404941483f4c91b3 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.cpp |
@@ -18,7 +18,7 @@ void BeginTransformDisplayItem::replay(GraphicsContext& context) const |
void BeginTransformDisplayItem::appendToWebDisplayItemList(const IntRect& visualRect, WebDisplayItemList* list) const |
{ |
- list->appendTransformItem(visualRect, affineTransformToSkMatrix(m_transform)); |
+ list->appendTransformItem(affineTransformToSkMatrix(m_transform)); |
} |
#ifndef NDEBUG |
@@ -37,7 +37,7 @@ void EndTransformDisplayItem::replay(GraphicsContext& context) const |
void EndTransformDisplayItem::appendToWebDisplayItemList(const IntRect& visualRect, WebDisplayItemList* list) const |
{ |
- list->appendEndTransformItem(visualRect); |
+ list->appendEndTransformItem(); |
} |
} // namespace blink |