| Index: Source/core/paint/ViewDisplayListTest.cpp
|
| diff --git a/Source/core/paint/ViewDisplayListTest.cpp b/Source/core/paint/ViewDisplayListTest.cpp
|
| index 637ff54efd3fa83f4b9142824c89328aa9f12386..14ba2e43f4f5477d030bed46abc507b61ff2ce65 100644
|
| --- a/Source/core/paint/ViewDisplayListTest.cpp
|
| +++ b/Source/core/paint/ViewDisplayListTest.cpp
|
| @@ -5,8 +5,8 @@
|
| #include "config.h"
|
| #include "core/paint/ViewDisplayList.h"
|
|
|
| +#include "core/paint/ClipRecorder.h"
|
| #include "core/paint/DrawingRecorder.h"
|
| -#include "core/paint/LayerClipRecorder.h"
|
| #include "core/rendering/RenderView.h"
|
| #include "core/rendering/RenderingTestHelper.h"
|
| #include "core/rendering/compositing/RenderLayerCompositor.h"
|
| @@ -64,7 +64,7 @@
|
| {
|
| IntRect rect(1, 1, 9, 9);
|
| ClipRect clipRect(rect);
|
| - LayerClipRecorder layerClipRecorder(renderer, context, DisplayItem::ClipLayerForeground, clipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| + ClipRecorder clipRecorder(renderer, context, DisplayItem::ClipLayerForeground, clipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| drawRect(context, renderer, phase, bound);
|
| }
|
|
|
| @@ -362,7 +362,7 @@
|
|
|
| ClipRect firstClipRect(IntRect(1, 1, 2, 2));
|
| {
|
| - LayerClipRecorder layerClipRecorder(firstRenderer, context, DisplayItem::ClipLayerForeground, firstClipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| + ClipRecorder clipRecorder(firstRenderer, context, DisplayItem::ClipLayerForeground, firstClipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| drawRect(context, firstRenderer, PaintPhaseBlockBackground, FloatRect(100, 100, 150, 150));
|
| drawRect(context, secondRenderer, PaintPhaseBlockBackground, FloatRect(100, 100, 150, 150));
|
| }
|
| @@ -385,7 +385,7 @@
|
| drawRect(context, firstRenderer, PaintPhaseBlockBackground, FloatRect(100, 100, 150, 150));
|
| ClipRect secondClipRect(IntRect(1, 1, 2, 2));
|
| {
|
| - LayerClipRecorder layerClipRecorder(secondRenderer, context, DisplayItem::ClipLayerForeground, secondClipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| + ClipRecorder clipRecorder(secondRenderer, context, DisplayItem::ClipLayerForeground, secondClipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| drawRect(context, secondRenderer, PaintPhaseBlockBackground, FloatRect(100, 100, 150, 150));
|
| }
|
|
|
|
|