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

Unified Diff: Source/core/frame/FrameView.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/css/SelectorChecker.cpp ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.h
diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
index ddda79956886827b54914f5e4b2ef74059285125..09b54b3b0ca0745b2b444a2ec46d4276480a2265 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -58,7 +58,7 @@ class Page;
class RenderBox;
class LayoutEmbeddedObject;
class LayoutObject;
-class RenderScrollbarPart;
+class LayoutScrollbarPart;
class RenderView;
class ScrollingCoordinator;
struct CompositedSelectionBound;
@@ -252,7 +252,7 @@ public:
IntPoint convertFromRenderer(const LayoutObject&, const IntPoint&) const;
IntPoint convertToRenderer(const LayoutObject&, const IntPoint&) const;
- bool isFrameViewScrollCorner(RenderScrollbarPart* scrollCorner) const { return m_scrollCorner == scrollCorner; }
+ bool isFrameViewScrollCorner(LayoutScrollbarPart* scrollCorner) const { return m_scrollCorner == scrollCorner; }
enum ScrollingReasons {
Scrollable,
@@ -377,7 +377,7 @@ public:
// can be used to obtain those scrollbars.
virtual Scrollbar* horizontalScrollbar() const override { return m_horizontalScrollbar.get(); }
virtual Scrollbar* verticalScrollbar() const override { return m_verticalScrollbar.get(); }
- RenderScrollbarPart* scrollCorner() { return m_scrollCorner; }
+ LayoutScrollbarPart* scrollCorner() { return m_scrollCorner; }
void positionScrollbarLayers();
@@ -765,7 +765,7 @@ private:
RefPtrWillBeMember<Node> m_maintainScrollPositionAnchor;
// Renderer to hold our custom scroll corner.
- RenderScrollbarPart* m_scrollCorner;
+ LayoutScrollbarPart* m_scrollCorner;
OwnPtr<ScrollableAreaSet> m_scrollableAreas;
OwnPtr<ScrollableAreaSet> m_animatingScrollableAreas;
« no previous file with comments | « Source/core/css/SelectorChecker.cpp ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698