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

Unified Diff: Source/core/rendering/PaintInfo.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/rendering/LayoutState.cpp ('k') | Source/core/rendering/PaintInvalidationState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/PaintInfo.h
diff --git a/Source/core/rendering/PaintInfo.h b/Source/core/rendering/PaintInfo.h
index f6d1c726bc8f5b10e90b2fae2dda9f9990a0bd39..e027c177e9809c2cea21f6ec3583401c8a07e202 100644
--- a/Source/core/rendering/PaintInfo.h
+++ b/Source/core/rendering/PaintInfo.h
@@ -40,14 +40,14 @@
namespace blink {
class RenderInline;
-class RenderLayerModelObject;
+class LayoutLayerModelObject;
class RenderObject;
class RenderPart;
struct PaintInfo {
PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, PaintBehavior newPaintBehavior,
RenderObject* newPaintingRoot = 0, ListHashSet<RenderInline*>* newOutlineObjects = 0,
- const RenderLayerModelObject* newPaintContainer = 0)
+ const LayoutLayerModelObject* newPaintContainer = 0)
: context(newContext)
, rect(newRect)
, phase(newPhase)
@@ -83,7 +83,7 @@ struct PaintInfo {
DisplayItem::Type displayItemTypeForClipping() const { return DisplayItem::paintPhaseToClipBoxType(phase); }
- const RenderLayerModelObject* paintContainer() const { return m_paintContainer; }
+ const LayoutLayerModelObject* paintContainer() const { return m_paintContainer; }
ListHashSet<RenderInline*>* outlineObjects() const { return m_outlineObjects; }
void setOutlineObjects(ListHashSet<RenderInline*>* objects) { m_outlineObjects = objects; }
@@ -96,7 +96,7 @@ struct PaintInfo {
RenderObject* paintingRoot; // used to draw just one element and its visual kids
private:
- const RenderLayerModelObject* m_paintContainer; // the layer object that originates the current painting
+ const LayoutLayerModelObject* m_paintContainer; // the layer object that originates the current painting
ListHashSet<RenderInline*>* m_outlineObjects; // used to list outlines that should be painted by a block with inline children
};
« no previous file with comments | « Source/core/rendering/LayoutState.cpp ('k') | Source/core/rendering/PaintInvalidationState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698