| Index: third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
|
| index 6a795f67e699618fb651b9d3d7be0be9f15969f6..a3b4469df8a5d4b93c8ac2c5a23211891763d7c3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
|
| @@ -435,7 +435,10 @@ void LayoutBoxModelObject::setBackingNeedsPaintInvalidationInRect(const LayoutRe
|
| LayoutRect paintInvalidationRect = r;
|
| if (GraphicsLayer* squashingLayer = layer()->groupedMapping()->squashingLayer()) {
|
| // Note: the subpixel accumulation of layer() does not need to be added here. It is already taken into account.
|
| - squashingLayer->setNeedsDisplayInRect(enclosingIntRect(paintInvalidationRect), invalidationReason, object);
|
| + (void)paintInvalidationRect;
|
| + (void)squashingLayer;
|
| + // TODO(vmiura): Add support for this mapping.
|
| + // squashingLayer->setNeedsDisplayInRect(enclosingIntRect(paintInvalidationRect), invalidationReason, object);
|
| }
|
| } else {
|
| layer()->compositedLayerMapping()->setContentsNeedDisplayInRect(r, invalidationReason, object);
|
|
|