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

Unified Diff: Source/core/layout/LayerScrollableArea.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/Layer.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/LayerScrollableArea.h
diff --git a/Source/core/layout/LayerScrollableArea.h b/Source/core/layout/LayerScrollableArea.h
index 1a3ede7d5aed7e5e7be2ede6185000770e5d8a8e..ed27e872c984acf551c46d0b929b4ce939a7a9ee 100644
--- a/Source/core/layout/LayerScrollableArea.h
+++ b/Source/core/layout/LayerScrollableArea.h
@@ -60,7 +60,7 @@ enum ResizerHitTestType {
class PlatformEvent;
class RenderBox;
class Layer;
-class RenderScrollbarPart;
+class LayoutScrollbarPart;
class LayerScrollableArea final : public ScrollableArea {
friend class Internals;
@@ -150,7 +150,7 @@ public:
bool hasScrollbar() const { return m_hBar || m_vBar; }
- RenderScrollbarPart* scrollCorner() const { return m_scrollCorner; }
+ LayoutScrollbarPart* scrollCorner() const { return m_scrollCorner; }
void resize(const PlatformEvent&, const LayoutSize&);
IntSize offsetFromResizeCorner(const IntPoint& absolutePoint) const;
@@ -210,7 +210,7 @@ public:
RenderBox& box() const;
Layer* layer() const;
- RenderScrollbarPart* resizer() { return m_resizer; }
+ LayoutScrollbarPart* resizer() { return m_resizer; }
const IntPoint& cachedOverlayScrollbarOffset() { return m_cachedOverlayScrollbarOffset; }
void setCachedOverlayScrollbarOffset(const IntPoint& offset) { m_cachedOverlayScrollbarOffset = offset; }
@@ -279,10 +279,10 @@ private:
RefPtrWillBePersistent<Scrollbar> m_vBar;
// Renderers to hold our custom scroll corner.
- RenderScrollbarPart* m_scrollCorner;
+ LayoutScrollbarPart* m_scrollCorner;
// Renderers to hold our custom resizer.
- RenderScrollbarPart* m_resizer;
+ LayoutScrollbarPart* m_resizer;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/Layer.cpp ('k') | Source/core/layout/LayerScrollableArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698