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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollableArea.h

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/platform/scroll/ScrollableArea.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
index c1953af1d86a77e479f05381a3b774be2c05fd6c..5c74eff46ce197094bfdee9395914e31964c8591 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
@@ -184,25 +184,25 @@ class PLATFORM_EXPORT ScrollableArea : public GarbageCollectedMixin,
// Convert points and rects between the scrollbar and its containing
// FrameViewBase. The client needs to implement these in order to be aware of
// layout effects like CSS transforms.
- virtual IntRect convertFromScrollbarToContainingWidget(
+ virtual IntRect convertFromScrollbarToContainingFrameViewBase(
const Scrollbar& scrollbar,
const IntRect& scrollbarRect) const {
return scrollbar.FrameViewBase::convertToContainingFrameViewBase(
scrollbarRect);
}
- virtual IntRect convertFromContainingWidgetToScrollbar(
+ virtual IntRect convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar& scrollbar,
const IntRect& parentRect) const {
return scrollbar.FrameViewBase::convertFromContainingFrameViewBase(
parentRect);
}
- virtual IntPoint convertFromScrollbarToContainingWidget(
+ virtual IntPoint convertFromScrollbarToContainingFrameViewBase(
const Scrollbar& scrollbar,
const IntPoint& scrollbarPoint) const {
return scrollbar.FrameViewBase::convertToContainingFrameViewBase(
scrollbarPoint);
}
- virtual IntPoint convertFromContainingWidgetToScrollbar(
+ virtual IntPoint convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar& scrollbar,
const IntPoint& parentPoint) const {
return scrollbar.FrameViewBase::convertFromContainingFrameViewBase(
@@ -340,7 +340,7 @@ class PLATFORM_EXPORT ScrollableArea : public GarbageCollectedMixin,
OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const;
// Returns the widget associated with this ScrollableArea.
- virtual FrameViewBase* getWidget() { return nullptr; }
+ virtual FrameViewBase* getFrameViewBase() { return nullptr; }
virtual LayoutBox* layoutBox() const { return nullptr; }

Powered by Google App Engine
This is Rietveld 408576698