| Index: Source/core/rendering/RenderObject.cpp
|
| diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp
|
| index 019ad5e3f4a63f4442227d963403720c6b055f33..c4517820ca48f1c3fde44c8984701c812866eec6 100644
|
| --- a/Source/core/rendering/RenderObject.cpp
|
| +++ b/Source/core/rendering/RenderObject.cpp
|
| @@ -1176,13 +1176,13 @@ void RenderObject::invalidatePaintUsingContainer(const RenderLayerModelObject* p
|
| }
|
|
|
| if (paintInvalidationContainer->isRenderView()) {
|
| - toRenderView(paintInvalidationContainer)->invalidatePaintForRectangle(r, invalidationReason, *this);
|
| + toRenderView(paintInvalidationContainer)->invalidatePaintForRectangle(r, invalidationReason);
|
| return;
|
| }
|
|
|
| if (paintInvalidationContainer->view()->usesCompositing()) {
|
| ASSERT(paintInvalidationContainer->isPaintInvalidationContainer());
|
| - paintInvalidationContainer->setBackingNeedsPaintInvalidationInRect(r, invalidationReason, *this);
|
| + paintInvalidationContainer->setBackingNeedsPaintInvalidationInRect(r, invalidationReason);
|
| }
|
| }
|
|
|
|
|