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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.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/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 373b7e4fb0ef065afa6b7483a2c730af77320fef..e3c6e83a079b087481dbfc59f9e235e0f2f0aa05 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -4478,7 +4478,7 @@ bool FrameView::shouldPlaceVerticalScrollbarOnLeft() const {
return false;
}
-FrameViewBase* FrameView::getWidget() {
+FrameViewBase* FrameView::getFrameViewBase() {
return this;
}
@@ -4594,7 +4594,7 @@ bool FrameView::scrollbarCornerPresent() const {
(verticalScrollbar() && height() - verticalScrollbar()->height() > 0);
}
-IntRect FrameView::convertFromScrollbarToContainingWidget(
+IntRect FrameView::convertFromScrollbarToContainingFrameViewBase(
const Scrollbar& scrollbar,
const IntRect& localRect) const {
// Scrollbars won't be transformed within us
@@ -4603,7 +4603,7 @@ IntRect FrameView::convertFromScrollbarToContainingWidget(
return newRect;
}
-IntRect FrameView::convertFromContainingWidgetToScrollbar(
+IntRect FrameView::convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar& scrollbar,
const IntRect& parentRect) const {
IntRect newRect = parentRect;
@@ -4613,7 +4613,7 @@ IntRect FrameView::convertFromContainingWidgetToScrollbar(
}
// FIXME: test these on windows
-IntPoint FrameView::convertFromScrollbarToContainingWidget(
+IntPoint FrameView::convertFromScrollbarToContainingFrameViewBase(
const Scrollbar& scrollbar,
const IntPoint& localPoint) const {
// Scrollbars won't be transformed within us
@@ -4622,7 +4622,7 @@ IntPoint FrameView::convertFromScrollbarToContainingWidget(
return newPoint;
}
-IntPoint FrameView::convertFromContainingWidgetToScrollbar(
+IntPoint FrameView::convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar& scrollbar,
const IntPoint& parentPoint) const {
IntPoint newPoint = parentPoint;
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.h ('k') | third_party/WebKit/Source/core/frame/RootFrameViewport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698