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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.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/core/paint/PaintLayerScrollableArea.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
index 98ef35a606c980297f4040e545948ed74336a531..e444af61aa706bea4f7af9f01058e943a666afd4 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
@@ -260,14 +260,16 @@ class CORE_EXPORT PaintLayerScrollableArea final
bool isActive() const override;
bool isScrollCornerVisible() const override;
IntRect scrollCornerRect() const override;
- IntRect convertFromScrollbarToContainingWidget(const Scrollbar&,
- const IntRect&) const override;
- IntRect convertFromContainingWidgetToScrollbar(const Scrollbar&,
- const IntRect&) const override;
- IntPoint convertFromScrollbarToContainingWidget(
+ IntRect convertFromScrollbarToContainingFrameViewBase(
+ const Scrollbar&,
+ const IntRect&) const override;
+ IntRect convertFromContainingFrameViewBaseToScrollbar(
+ const Scrollbar&,
+ const IntRect&) const override;
+ IntPoint convertFromScrollbarToContainingFrameViewBase(
const Scrollbar&,
const IntPoint&) const override;
- IntPoint convertFromContainingWidgetToScrollbar(
+ IntPoint convertFromContainingFrameViewBaseToScrollbar(
const Scrollbar&,
const IntPoint&) const override;
int scrollSize(ScrollbarOrientation) const override;
@@ -421,7 +423,7 @@ class CORE_EXPORT PaintLayerScrollableArea final
IntRect rectForHorizontalScrollbar(const IntRect& borderBoxRect) const;
IntRect rectForVerticalScrollbar(const IntRect& borderBoxRect) const;
- FrameViewBase* getWidget() override;
+ FrameViewBase* getFrameViewBase() override;
bool shouldPerformScrollAnchoring() const override;
ScrollAnchor* scrollAnchor() override { return &m_scrollAnchor; }
bool isPaintLayerScrollableArea() const override { return true; }

Powered by Google App Engine
This is Rietveld 408576698