| Index: third_party/WebKit/Source/core/paint/LayerClipRecorderTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/LayerClipRecorderTest.cpp b/third_party/WebKit/Source/core/paint/LayerClipRecorderTest.cpp
|
| index 683cb11b62c48e2fa67632b15a38850a88fe74a8..bf4e8fe440ebd684c133ca63763dcd7abdf64497 100644
|
| --- a/third_party/WebKit/Source/core/paint/LayerClipRecorderTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/LayerClipRecorderTest.cpp
|
| @@ -44,14 +44,14 @@ void drawEmptyClip(GraphicsContext& context, LayoutView& layoutView, PaintPhase
|
| {
|
| LayoutRect rect(1, 1, 9, 9);
|
| ClipRect clipRect(rect);
|
| - LayerClipRecorder LayerClipRecorder(context, *layoutView.compositor()->rootLayer()->layoutObject(), DisplayItem::ClipLayerForeground, clipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| + LayerClipRecorder LayerClipRecorder(context, *layoutView.compositor()->rootLayer()->layoutObject(), DisplayItem::kClipLayerForeground, clipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| }
|
|
|
| void drawRectInClip(GraphicsContext& context, LayoutView& layoutView, PaintPhase phase, const LayoutRect& bound)
|
| {
|
| IntRect rect(1, 1, 9, 9);
|
| ClipRect clipRect((LayoutRect(rect)));
|
| - LayerClipRecorder LayerClipRecorder(context, *layoutView.compositor()->rootLayer()->layoutObject(), DisplayItem::ClipLayerForeground, clipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| + LayerClipRecorder LayerClipRecorder(context, *layoutView.compositor()->rootLayer()->layoutObject(), DisplayItem::kClipLayerForeground, clipRect, 0, LayoutPoint(), PaintLayerFlags());
|
| if (!LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(context, layoutView, phase)) {
|
| LayoutObjectDrawingRecorder drawingRecorder(context, layoutView, phase, bound);
|
| context.drawRect(rect);
|
|
|