Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: Source/core/layout/LayerPaintingInfo.h

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/LayerFragment.h ('k') | Source/core/layout/LayerReflectionInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/layout/LayerFragment.h ('k') | Source/core/layout/LayerReflectionInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698