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

Unified Diff: Source/core/paint/ScrollableAreaPainter.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/paint/ReplicaPainter.cpp ('k') | Source/core/paint/ScrollableAreaPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ScrollableAreaPainter.h
diff --git a/Source/core/paint/ScrollableAreaPainter.h b/Source/core/paint/ScrollableAreaPainter.h
index bb6aa474b78b5db0ef091fcdcc68a29770f8711c..60237b6293a03445f6dfbc84e575c0cd011af0aa 100644
--- a/Source/core/paint/ScrollableAreaPainter.h
+++ b/Source/core/paint/ScrollableAreaPainter.h
@@ -10,11 +10,11 @@ namespace blink {
class GraphicsContext;
class IntPoint;
class IntRect;
-class RenderLayerScrollableArea;
+class LayerScrollableArea;
class ScrollableAreaPainter {
public:
- ScrollableAreaPainter(RenderLayerScrollableArea& renderLayerScrollableArea) : m_renderLayerScrollableArea(renderLayerScrollableArea) { }
+ ScrollableAreaPainter(LayerScrollableArea& renderLayerScrollableArea) : m_renderLayerScrollableArea(renderLayerScrollableArea) { }
void paintResizer(GraphicsContext*, const IntPoint& paintOffset, const IntRect& damageRect);
void paintOverflowControls(GraphicsContext*, const IntPoint& paintOffset, const IntRect& damageRect, bool paintingOverlayControls);
@@ -24,7 +24,7 @@ private:
void drawPlatformResizerImage(GraphicsContext*, IntRect resizerCornerRect);
bool overflowControlsIntersectRect(const IntRect& localRect) const;
- RenderLayerScrollableArea& m_renderLayerScrollableArea;
+ LayerScrollableArea& m_renderLayerScrollableArea;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/ReplicaPainter.cpp ('k') | Source/core/paint/ScrollableAreaPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698