| Index: Source/core/rendering/RenderLayerScrollableArea.cpp
|
| diff --git a/Source/core/rendering/RenderLayerScrollableArea.cpp b/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| index be0858c35a75fc61e41ef07d9bca83eae6126097..79692070bb62ad44a4534df565dd475d86060c7a 100644
|
| --- a/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| +++ b/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| @@ -186,12 +186,12 @@ void RenderLayerScrollableArea::invalidateScrollbarRect(Scrollbar* scrollbar, co
|
|
|
| if (scrollbar == m_vBar.get()) {
|
| if (GraphicsLayer* layer = layerForVerticalScrollbar()) {
|
| - layer->setNeedsDisplayInRect(rect);
|
| + layer->setNeedsDisplayInRect(rect, WebInvalidationDebugAnnotationsScrollbar);
|
| return;
|
| }
|
| } else {
|
| if (GraphicsLayer* layer = layerForHorizontalScrollbar()) {
|
| - layer->setNeedsDisplayInRect(rect);
|
| + layer->setNeedsDisplayInRect(rect, WebInvalidationDebugAnnotationsScrollbar);
|
| return;
|
| }
|
| }
|
| @@ -223,7 +223,7 @@ void RenderLayerScrollableArea::invalidateScrollbarRect(Scrollbar* scrollbar, co
|
| void RenderLayerScrollableArea::invalidateScrollCornerRect(const IntRect& rect)
|
| {
|
| if (GraphicsLayer* layer = layerForScrollCorner()) {
|
| - layer->setNeedsDisplayInRect(rect);
|
| + layer->setNeedsDisplayInRect(rect, WebInvalidationDebugAnnotationsScrollbar);
|
| return;
|
| }
|
|
|
|
|