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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (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/LayerFilterInfo.cpp ('k') | Source/core/layout/LayerScrollableArea.cpp » ('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/layout/LayerPaintingInfo.h b/Source/core/layout/LayerPaintingInfo.h
index bf4c52a9f67ba2e34ddd01e8945c03b0bff41006..a6351263f605f359b07df9f2f5fd71bb1b9e0315 100644
--- a/Source/core/layout/LayerPaintingInfo.h
+++ b/Source/core/layout/LayerPaintingInfo.h
@@ -74,7 +74,7 @@ typedef unsigned PaintLayerFlags;
struct LayerPaintingInfo {
LayerPaintingInfo(Layer* inRootLayer, const LayoutRect& inDirtyRect,
PaintBehavior inPaintBehavior, const LayoutSize& inSubPixelAccumulation,
- RenderObject* inPaintingRoot = 0)
+ LayoutObject* inPaintingRoot = 0)
: rootLayer(inRootLayer)
, paintingRoot(inPaintingRoot)
, paintDirtyRect(inDirtyRect)
@@ -83,7 +83,7 @@ struct LayerPaintingInfo {
, clipToDirtyRect(true)
{ }
Layer* rootLayer;
- RenderObject* paintingRoot; // only paint descendants of this object
+ LayoutObject* paintingRoot; // only paint descendants of this object
LayoutRect paintDirtyRect; // relative to rootLayer;
LayoutSize subPixelAccumulation;
PaintBehavior paintBehavior;
« no previous file with comments | « Source/core/layout/LayerFilterInfo.cpp ('k') | Source/core/layout/LayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698