Index: Source/core/layout/LayerPaintingInfo.h |
diff --git a/Source/core/rendering/LayerPaintingInfo.h b/Source/core/layout/LayerPaintingInfo.h |
similarity index 96% |
rename from Source/core/rendering/LayerPaintingInfo.h |
rename to Source/core/layout/LayerPaintingInfo.h |
index 389247bd9e2311ec996b9e739765495602eeba78..bf4c52a9f67ba2e34ddd01e8945c03b0bff41006 100644 |
--- a/Source/core/rendering/LayerPaintingInfo.h |
+++ b/Source/core/layout/LayerPaintingInfo.h |
@@ -50,7 +50,7 @@ |
namespace blink { |
-class RenderLayer; |
+class Layer; |
enum PaintLayerFlag { |
PaintLayerHaveTransparency = 1, |
@@ -72,7 +72,7 @@ enum PaintLayerFlag { |
typedef unsigned PaintLayerFlags; |
struct LayerPaintingInfo { |
- LayerPaintingInfo(RenderLayer* inRootLayer, const LayoutRect& inDirtyRect, |
+ LayerPaintingInfo(Layer* inRootLayer, const LayoutRect& inDirtyRect, |
PaintBehavior inPaintBehavior, const LayoutSize& inSubPixelAccumulation, |
RenderObject* inPaintingRoot = 0) |
: rootLayer(inRootLayer) |
@@ -82,7 +82,7 @@ struct LayerPaintingInfo { |
, paintBehavior(inPaintBehavior) |
, clipToDirtyRect(true) |
{ } |
- RenderLayer* rootLayer; |
+ Layer* rootLayer; |
RenderObject* paintingRoot; // only paint descendants of this object |
LayoutRect paintDirtyRect; // relative to rootLayer; |
LayoutSize subPixelAccumulation; |