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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp

Issue 2725273002: Rename ScrollableArea fields and methods *Widget* to ...FrameViewBase... (Closed)
Patch Set: Rename ScrollableArea *Widget* to ...FrameViewBase... Created 3 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
Index: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index 8a5fd7f3bc135dc51d8b1fe6a2e3615ff0f209be..9055171269ed03b6c9241c9fd4ded2fefdfc49ae 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -314,7 +314,7 @@ IntRect PaintLayerScrollableArea::scrollCornerRect() const {
return IntRect();
}
-IntRect PaintLayerScrollableArea::convertFromScrollbarToContainingWidget(
+IntRect PaintLayerScrollableArea::convertFromScrollbarToContainingFrameViewBase(
const Scrollbar& scrollbar,
const IntRect& scrollbarRect) const {
LayoutView* view = box().view();
@@ -327,7 +327,7 @@ IntRect PaintLayerScrollableArea::convertFromScrollbarToContainingWidget(
return view->frameView()->convertFromLayoutItem(LayoutBoxItem(&box()), rect);
}
-IntRect PaintLayerScrollableArea::convertFromContainingWidgetToScrollbar(
+IntRect PaintLayerScrollableArea::convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar& scrollbar,
const IntRect& parentRect) const {
LayoutView* view = box().view();
@@ -340,7 +340,8 @@ IntRect PaintLayerScrollableArea::convertFromContainingWidgetToScrollbar(
return rect;
}
-IntPoint PaintLayerScrollableArea::convertFromScrollbarToContainingWidget(
+IntPoint
+PaintLayerScrollableArea::convertFromScrollbarToContainingFrameViewBase(
const Scrollbar& scrollbar,
const IntPoint& scrollbarPoint) const {
LayoutView* view = box().view();
@@ -352,7 +353,8 @@ IntPoint PaintLayerScrollableArea::convertFromScrollbarToContainingWidget(
return view->frameView()->convertFromLayoutItem(LayoutBoxItem(&box()), point);
}
-IntPoint PaintLayerScrollableArea::convertFromContainingWidgetToScrollbar(
+IntPoint
+PaintLayerScrollableArea::convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar& scrollbar,
const IntPoint& parentPoint) const {
LayoutView* view = box().view();
@@ -1900,7 +1902,7 @@ bool PaintLayerScrollableArea::visualViewportSuppliesScrollbars() const {
controller.globalRootScroller()) == this;
}
-FrameViewBase* PaintLayerScrollableArea::getWidget() {
+FrameViewBase* PaintLayerScrollableArea::getFrameViewBase() {
return box().frame()->view();
}

Powered by Google App Engine
This is Rietveld 408576698