| Index: third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| index 8958a75edf3ac2bc296c5fa98cf7f02fa214f979..63956fde1c12d32cd755584d38f2a55bc3fadd64 100644
|
| --- a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| @@ -840,7 +840,7 @@ void PaintLayerCompositor::paintContents(const GraphicsLayer* graphicsLayer, Gra
|
| if (!scrollbar && graphicsLayer != layerForScrollCorner())
|
| return;
|
|
|
| - if (DrawingRecorder::useCachedDrawingIfPossible(context, *graphicsLayer, DisplayItem::ScrollbarCompositedScrollbar))
|
| + if (DrawingRecorder::useCachedDrawingIfPossible(context, *graphicsLayer, DisplayItem::kScrollbarCompositedScrollbar))
|
| return;
|
|
|
| FloatRect layerBounds(FloatPoint(), graphicsLayer->size());
|
| @@ -854,7 +854,7 @@ void PaintLayerCompositor::paintContents(const GraphicsLayer* graphicsLayer, Gra
|
| // Replay the painted scrollbar content with the GraphicsLayer backing as the DisplayItemClient
|
| // in order for the resulting DrawingDisplayItem to produce the correct visualRect (i.e., the
|
| // bounds of the involved GraphicsLayer).
|
| - DrawingRecorder drawingRecorder(context, *graphicsLayer, DisplayItem::ScrollbarCompositedScrollbar, layerBounds);
|
| + DrawingRecorder drawingRecorder(context, *graphicsLayer, DisplayItem::kScrollbarCompositedScrollbar, layerBounds);
|
| pictureBuilder.endRecording()->playback(context.canvas());
|
| }
|
|
|
|
|