| Index: Source/core/rendering/RenderLayerScrollableArea.cpp
|
| diff --git a/Source/core/rendering/RenderLayerScrollableArea.cpp b/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| index 20df23b7ae2f22478e4727bd197767d7039116d9..8092f443704d31c789af91e0bed1051754c910ae 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;
|
| }
|
|
|
|
|