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

Unified Diff: Source/core/rendering/RenderListMarker.cpp

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/RenderListMarker.h ('k') | Source/core/rendering/RenderMultiColumnSet.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderListMarker.cpp
diff --git a/Source/core/rendering/RenderListMarker.cpp b/Source/core/rendering/RenderListMarker.cpp
index 715fbd041c03f8b54f55ebf1c4548e8ad1a60d45..3fdd53bcf31785f20e6db0d1c964d4129211d2a3 100644
--- a/Source/core/rendering/RenderListMarker.cpp
+++ b/Source/core/rendering/RenderListMarker.cpp
@@ -26,8 +26,8 @@
#include "core/rendering/RenderListMarker.h"
#include "core/fetch/ImageResource.h"
+#include "core/layout/Layer.h"
#include "core/paint/ListMarkerPainter.h"
-#include "core/rendering/RenderLayer.h"
#include "core/rendering/RenderListItem.h"
#include "core/rendering/TextRunConstructor.h"
#include "platform/fonts/Font.h"
@@ -1614,7 +1614,7 @@ void RenderListMarker::setSelectionState(SelectionState state)
inlineBoxWrapper()->root().setHasSelectedChildren(state != SelectionNone);
}
-LayoutRect RenderListMarker::selectionRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer) const
+LayoutRect RenderListMarker::selectionRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer) const
{
ASSERT(!needsLayout());
@@ -1626,7 +1626,7 @@ LayoutRect RenderListMarker::selectionRectForPaintInvalidation(const RenderLayer
mapRectToPaintInvalidationBacking(paintInvalidationContainer, rect, 0);
// FIXME: groupedMapping() leaks the squashing abstraction.
if (paintInvalidationContainer->layer()->groupedMapping())
- RenderLayer::mapRectToPaintBackingCoordinates(paintInvalidationContainer, rect);
+ Layer::mapRectToPaintBackingCoordinates(paintInvalidationContainer, rect);
return rect;
}
« no previous file with comments | « Source/core/rendering/RenderListMarker.h ('k') | Source/core/rendering/RenderMultiColumnSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698