| Index: Source/core/rendering/RenderView.cpp
|
| diff --git a/Source/core/rendering/RenderView.cpp b/Source/core/rendering/RenderView.cpp
|
| index a76de7ab55300aedd9723edafb09f725a6bc2fcd..498eddae513384865db6ee8116c8e4be0a1c4764 100644
|
| --- a/Source/core/rendering/RenderView.cpp
|
| +++ b/Source/core/rendering/RenderView.cpp
|
| @@ -336,7 +336,7 @@ void RenderView::invalidateTreeIfNeeded(const PaintInvalidationState& paintInval
|
| RenderBlock::invalidateTreeIfNeeded(paintInvalidationState);
|
| }
|
|
|
| -void RenderView::invalidatePaintForRectangle(const LayoutRect& paintInvalidationRect, PaintInvalidationReason invalidationReason, const RenderObject& forRenderer) const
|
| +void RenderView::invalidatePaintForRectangle(const LayoutRect& paintInvalidationRect, PaintInvalidationReason invalidationReason) const
|
| {
|
| ASSERT(!paintInvalidationRect.isEmpty());
|
|
|
| @@ -346,7 +346,7 @@ void RenderView::invalidatePaintForRectangle(const LayoutRect& paintInvalidation
|
| ASSERT(layer()->compositingState() == PaintsIntoOwnBacking || !frame()->ownerRenderer());
|
|
|
| if (layer()->compositingState() == PaintsIntoOwnBacking) {
|
| - setBackingNeedsPaintInvalidationInRect(paintInvalidationRect, invalidationReason, forRenderer);
|
| + setBackingNeedsPaintInvalidationInRect(paintInvalidationRect, invalidationReason);
|
| } else {
|
| m_frameView->contentRectangleForPaintInvalidation(pixelSnappedIntRect(paintInvalidationRect));
|
| }
|
|
|