| Index: Source/core/paint/FilterPainter.cpp
|
| diff --git a/Source/core/paint/FilterPainter.cpp b/Source/core/paint/FilterPainter.cpp
|
| index 49a07edb877eb1d8173fc35240368250a38b2e71..e7d04e221323678589e41f0bc0fa9251a05666f8 100644
|
| --- a/Source/core/paint/FilterPainter.cpp
|
| +++ b/Source/core/paint/FilterPainter.cpp
|
| @@ -5,7 +5,6 @@
|
| #include "config.h"
|
| #include "core/paint/FilterPainter.h"
|
|
|
| -#include "core/paint/LayerClipRecorder.h"
|
| #include "core/paint/LayerPainter.h"
|
| #include "core/rendering/FilterEffectRenderer.h"
|
| #include "core/rendering/RenderLayer.h"
|
| @@ -82,7 +81,7 @@
|
| paintingInfo.clipToDirtyRect = false;
|
|
|
| if (clipRect.rect() != paintingInfo.paintDirtyRect || clipRect.hasRadius()) {
|
| - m_clipRecorder = adoptPtr(new LayerClipRecorder(renderLayer.renderer(), context, DisplayItem::ClipLayerFilter, clipRect, &paintingInfo, LayoutPoint(), paintFlags));
|
| + m_clipRecorder = adoptPtr(new ClipRecorder(renderLayer.renderer(), context, DisplayItem::ClipLayerFilter, clipRect, &paintingInfo, LayoutPoint(), paintFlags));
|
| }
|
|
|
| OwnPtr<BeginFilterDisplayItem> filterDisplayItem = adoptPtr(new BeginFilterDisplayItem(m_renderer, DisplayItem::BeginFilter, imageFilter, rootRelativeBounds));
|
|
|