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

Unified Diff: Source/core/paint/ScrollbarPainter.h

Issue 951453003: Rename rendering/RenderScrollbar* to layout/LayoutScrollbar* (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/LayoutScrollbarTheme.cpp ('k') | Source/core/paint/ScrollbarPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ScrollbarPainter.h
diff --git a/Source/core/paint/ScrollbarPainter.h b/Source/core/paint/ScrollbarPainter.h
index b338bf2330532148d757cb4fd11d802cc7a06e10..c66431b43ac133a08af18265c8f5f8a40a78a7fc 100644
--- a/Source/core/paint/ScrollbarPainter.h
+++ b/Source/core/paint/ScrollbarPainter.h
@@ -13,18 +13,18 @@ class GraphicsContext;
class IntRect;
class LayoutPoint;
class LayoutRect;
-class RenderScrollbar;
-class RenderScrollbarPart;
+class LayoutScrollbar;
+class LayoutScrollbarPart;
class ScrollbarPainter {
public:
- ScrollbarPainter(RenderScrollbar& renderScrollbar) : m_renderScrollbar(renderScrollbar) { }
+ ScrollbarPainter(LayoutScrollbar& renderScrollbar) : m_renderScrollbar(renderScrollbar) { }
void paintPart(GraphicsContext*, ScrollbarPart, const IntRect&);
- static void paintIntoRect(RenderScrollbarPart*, GraphicsContext*, const LayoutPoint& paintOffset, const LayoutRect&);
+ static void paintIntoRect(LayoutScrollbarPart*, GraphicsContext*, const LayoutPoint& paintOffset, const LayoutRect&);
private:
- RenderScrollbar& m_renderScrollbar;
+ LayoutScrollbar& m_renderScrollbar;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutScrollbarTheme.cpp ('k') | Source/core/paint/ScrollbarPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698