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

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

Issue 2730773003: Rename FrameViewBase fields and methods *Widget* to ...FrameViewBase... (Closed)
Patch Set: 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 6c5a92464f643a060839ea2e5bb88cc2682393ef..c1953af1d86a77e479f05381a3b774be2c05fd6c 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
@@ -187,22 +187,26 @@ class PLATFORM_EXPORT ScrollableArea : public GarbageCollectedMixin,
virtual IntRect convertFromScrollbarToContainingWidget(
const Scrollbar& scrollbar,
const IntRect& scrollbarRect) const {
- return scrollbar.FrameViewBase::convertToContainingWidget(scrollbarRect);
+ return scrollbar.FrameViewBase::convertToContainingFrameViewBase(
+ scrollbarRect);
}
virtual IntRect convertFromContainingWidgetToScrollbar(
const Scrollbar& scrollbar,
const IntRect& parentRect) const {
- return scrollbar.FrameViewBase::convertFromContainingWidget(parentRect);
+ return scrollbar.FrameViewBase::convertFromContainingFrameViewBase(
+ parentRect);
}
virtual IntPoint convertFromScrollbarToContainingWidget(
const Scrollbar& scrollbar,
const IntPoint& scrollbarPoint) const {
- return scrollbar.FrameViewBase::convertToContainingWidget(scrollbarPoint);
+ return scrollbar.FrameViewBase::convertToContainingFrameViewBase(
+ scrollbarPoint);
}
virtual IntPoint convertFromContainingWidgetToScrollbar(
const Scrollbar& scrollbar,
const IntPoint& parentPoint) const {
- return scrollbar.FrameViewBase::convertFromContainingWidget(parentPoint);
+ return scrollbar.FrameViewBase::convertFromContainingFrameViewBase(
+ parentPoint);
}
virtual Scrollbar* horizontalScrollbar() const { return nullptr; }
« no previous file with comments | « third_party/WebKit/Source/platform/mac/ScrollAnimatorMac.mm ('k') | third_party/WebKit/Source/platform/scroll/Scrollbar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698